Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IHostResourceProvider.cs « Xamarin.PropertyEditing.Mac - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8fd81881c6faecf06ba24fa81ff8c38bb5c25a7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using AppKit;
using ObjCRuntime;

namespace Xamarin.PropertyEditing.Mac
{
	public interface IHostResourceProvider
	{
		NSAppearance GetVibrantAppearance (NSAppearance appearance);

		NSColor GetNamedColor (string name);
		NSImage GetNamedImage (string name);
		NSFont GetNamedFont (string name, nfloat fontSize);
	}
}