コード例 #1
0
 public TextTool()
 {
     cursor_hand       = new Gdk.Cursor(PintaCore.Chrome.Canvas.Display, PintaCore.Resources.GetIcon("Cursor.Pan.png"), 8, 8);
     imContext         = new Gtk.IMMulticontext();
     imContext.Commit += OnIMCommit;
     layout            = new TextLayout();
 }
コード例 #2
0
ファイル: TextTool.cs プロジェクト: mfcallahan/Pinta
 public TextTool(IServiceManager services) : base(services)
 {
     cursor_hand       = new Gdk.Cursor(Gdk.Display.Default, PintaCore.Resources.GetIcon("Cursor.Pan.png"), 8, 8);
     imContext         = new Gtk.IMMulticontext();
     imContext.Commit += OnIMCommit;
     layout            = new Pinta.Core.TextLayout();
 }
コード例 #3
0
ファイル: TextTool.cs プロジェクト: PintaProject/Pinta
 public TextTool()
 {
     cursor_hand = new Gdk.Cursor (Gdk.Display.Default, PintaCore.Resources.GetIcon ("Cursor.Pan.png"), 8, 8);
     imContext = new Gtk.IMMulticontext ();
     imContext.Commit += OnIMCommit;
     layout = new TextLayout ();
 }