Initialize() public méthode

public Initialize ( Gtk.Toolbar toolToolBar, Gtk.Label statusBarText, Gtk.DrawingArea drawingArea, Gtk.TreeView historyStack, Gtk.Window mainWindow, IProgressDialog progressDialog ) : void
toolToolBar Gtk.Toolbar
statusBarText Gtk.Label
drawingArea Gtk.DrawingArea
historyStack Gtk.TreeView
mainWindow Gtk.Window
progressDialog IProgressDialog
Résultat void
Exemple #1
0
        public static void Initialize(Toolbar toolToolBar,
		                               Label statusTextLabel,
		                               DrawingArea drawingArea,
		                               TreeView historyStack,
		                               Window mainWindow,
		                               IProgressDialog progressDialog,
		                               Viewport viewport)
        {
            Chrome = new ChromeManager ();
            Chrome.Initialize (toolToolBar,
                               statusTextLabel,
                               drawingArea,
                               historyStack,
                               mainWindow,
                               progressDialog);

            Palette = new PaletteManager ();

            Workspace.Initialize (viewport);

            Actions.RegisterHandlers ();
        }
Exemple #2
0
        public static void Initialize(Toolbar toolToolBar, Label statusTextLabel, DrawingArea drawingArea, TreeView historyStack, Window mainWindow)
        {
            Chrome = new ChromeManager ();
            Chrome.Initialize (toolToolBar, statusTextLabel, drawingArea, historyStack, mainWindow);

            Palette = new PaletteManager ();

            Actions.RegisterHandlers ();
        }
Exemple #3
0
        public static void Initialize(Toolbar toolToolBar,
		                               DrawingArea drawingArea,
		                               Window mainWindow,
		                               IProgressDialog progressDialog)
        {
            Chrome = new ChromeManager ();
            Chrome.Initialize (toolToolBar,
                               drawingArea,
                               mainWindow,
                               progressDialog);

            Actions.RegisterHandlers ();
        }