gtk-sharp 0.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Toplevel widget which can contain other widgets. Toplevel widget which can contain other widgets. Gtk.Bin Atk.Implementor GLib.IWrapper GLib.IWrapper System.IDisposable Method GLib.List Returns a list of all existing toplevel windows. List of toplevel widgets. The widgets in the list are not individually referenced. If you want to iterate through the list and perform actions involving callbacks that might destroy the widgets, you must call g_list_foreach (result, (GFunc)g_object_ref, ) first, and then unref all the widgets afterwards. Method System.Void Starts moving a window. Mouse button that initiated the drag. X position where the user clicked to initiate the drag, in root window coordinates. Y position where the user clicked to initiate the drag. Timestamp from the click event that initiated the drag. This method is used if an application has window movement grips. When GDK can support it, the window movement will be done using the standard mechanism for the window manager or windowing system. Otherwise, GDK will try to emulate window movement, potentially not all that well, depending on the windowing system. Method System.Void Retrieves the dimensions of the frame window for this toplevel. Location to store the width of the frame at the left, or . Location to store the height of the frame at the top, or . Location to store the width of the frame at the returns, or . Location to store the height of the frame at the bottom, or . It will not return the size of the window border drawn by the window manager, which is the normal case when using a windowing system. See to get the standard window border extents.) See also , . Note: this is a special-purpose function intended for the framebuffer port; see . Method System.Void Asks to iconify (i.e. minimize) the specified . Note that you shouldn't assume the window is definitely iconified afterward, because other entities (e.g. the user or window manager) could deiconify it again, or there may not be a window manager in which case iconification isn't possible, etc. But normally the window will end up iconified. Just do not write code that crashes if not. You can track iconification via the signal on . Method System.Void Asks to unstick window, which means that it will appear on only one of the user's desktops. Note that you shouldn't assume the window is definitely unstuck afterward, because other entities (e.g. the user or window manager) could stick it again. But normally the window will end up stuck. Just do not write code that crashes if not. You can track stickiness via the signal on . Method System.Void Asks to unmaximize . Note that you shouldn't assume the window is definitely unmaximized afterward, because other entities (e.g. the user or window manager) could maximize it again, and not all window managers honor requests to unmaximize. But normally the window will end up unmaximized. Just don't write code that crashes if not. You can track maximization via the signal on Method System.Void Obtains the current size of . Return location for width, or . Return location for height, or . If window is not onscreen, it returns the size GTK+ will suggest to the window manager for the initial window size (but this is not reliably the same as the size the window manager will actually select). The size obtained by is the last size received in a GdkEventConfigure, that is, GTK+ uses its locally-stored size, rather than querying the X server for the size. As a result, if you call then immediately call , the size would not have taken effect yet. After the window manager processes the resize request, GTK+ receives notification that the size has changed via a configure event, and the size of the window gets updated. Note 1: Nearly any use of this function creates a race condition, because the size of the window may change between the time that you get the size and the time that you perform some action assuming that size is the current size. To avoid race conditions, connect to on the window and adjust your size-dependent state to match the size delivered in the GdkEventConfigure. Method System.Void Gets the default size of the window. Location to store the default width, or . Location to store the default height, or . A value of -1 for the width or height indicates that a default size has not been explicitly set for that dimension, so the "natural" size of the window will be used. Method System.Void Resizes the window as if the user had done so, obeying geometry constraints. Width in pixels to resize the window to. Height in pixels to resize the window to. The default geometry constraint is that windows may not be smaller than their size request; to override this constraint, call to set the window's request to a smaller value. If is called before showing a window for the first time, it overrides any default size set with . Windows may not be resized smaller than 1 by 1 pixels. Method System.Boolean Activates the current focused widget within the window. if a widget got activated. Method System.Boolean Parses a standard X Window System geometry string. if string was parsed successfully. does work on all GTK+ ports including Win32 but is primarily intended for an X environment. If either a size or a position can be extracted from the geometry string, returns and calls and/or to resize/move the window. If returns , it will also set the GDK_HINT_USER_POS and/or GDK_HINT_USER_SIZE hints indicating to the window manager that the size/position of the window was user-specified. This causes most window managers to honor the geometry. Note that for to work as expected, it has to be called when the window has its "final" size, i.e. after calling on the contents and on the window. Method System.Void Reverses the effects of . A . Method System.Void Asks to stick , which means that it will appear on all user desktops. Note that you shouldn't assume the window is definitely stuck afterward, because other entities (e.g. the user or window manager) could unstick it again, and some window managers do not support sticking windows. But normally the window will end up stuck. Just don't write code that crashes if not. You can track stickiness via the signal on GtkWidget. It's permitted to call this function before showing a window. Method System.Void For windows with frames (see ) this function can be used to change the size of the frame border. The width of the left border. The height of the top border. The width of the right border. The height of the bottom border. Note: this is a special-purpose function intended for the framebuffer port; see . It will have no effect on the window border drawn by the window manager, which is the normal case when using the X Window system. Method System.Void Adds a mnemonic to this . The mnemonic. The widget that gets activated by the mnemonic. Method System.Void Starts resizing a . Position of the resize control. Mouse button that initiated the drag. X position where the user clicked to initiate the drag, in root window coordinates. Y position where the user clicked to initiate the drag Timestamp from the click event that initiated the drag. This function is used if an application has window resizing controls. When GDK can support it, the resize will be done using the standard mechanism for the window manager or windowing system. Otherwise, GDK will try to emulate window resizing, potentially not all that well, depending on the windowing system. Method System.Void This function returns the position you need to pass to to keep in its current position. Return location for X coordinate of gravity-determined reference point. Return location for Y coordinate of gravity-determined reference point. If you haven't changed the window gravity, its gravity will be GDK_GRAVITY_NORTH_WEST. This means that gets the position of the top-left corner of the window manager frame for the window. sets the position of this same top-left corner. is not 100% reliable because the X Window System does not specify a way to obtain the geometry of the decorations placed on a window by the window manager. Thus GTK+ is using a "best guess" that works with most window managers. Moreover, nearly all window managers are historically broken with respect to their handling of window gravity. So moving a window to its current position as returned by tends to result in moving the window slightly. Window managers are slowly getting better over time. If a window has gravity GDK_GRAVITY_STATIC the window manager frame is not relevant, and thus will always produce accurate results. However you can't use static gravity to do things like place a window in a corner of the screen, because static gravity ignores the window manager decorations. If you are saving and restoring your application's window positions, you should know that it's impossible for applications to do this without getting it somewhat wrong because applications do not have sufficient knowledge of window manager state. The Correct Mechanism is to support the session management protocol (see the "GnomeClient" object in the GNOME libraries for example) and allow the window manager to save your window sizes and positions. Method System.Void Asks to deiconify (i.e. unminimizw) the specified . Note that you shouldn't assume the window is definitely deiconified afterward, because other entities (e.g. the user or window manager) could iconify it again before your code which assumes deiconification gets to run. You can track iconification via the signal on GtkWidget. Method System.Boolean Activates the targets associated with the mnemonic. The mnemonic. The modifiers. if the activation is done. Method System.Boolean Activates the default for the . if a widget is activated. That is unless the current focused widget has been configured to receive the default (see ) action in which case the case the focused widget is activated. Method System.Void Asks to maximize , so that it becomes full-screen. Note that you shouldn't assume the window is definitely maximized afterward, because other entities (e.g. the user or window manager) could unmaximize it again, and not all window managers support maximization. But normally the window will end up maximized. Just don't write code that crashes if not. You can track maximization via the signal on GtkWidget. It's permitted to call this function before showing a window, in which case the window will be maximized when it appears onscreen initially. Method System.Void Removes a mnemonic from this . The mnemonic. The widget that gets activated by the mnemonic. Method System.Void To be added an object of type To be added Method System.Void It sets the X Window System "class" and "name" hints for a . (Don't use this function.) Window name hint. Window class hint. According to the ICCCM, you should always set these to the same value for all windows in an application, and GTK+ sets them to that value by default, so calling this function is sort of pointless. However, you may want to call on each window in your application, for the benefit of the session manager. Setting the role allows the window manager to restore window positions when loading a saved session. Method System.Void To be added an object of type To be added Method System.Void Sets the default size of an object, with the specified width and height arguments. Width in pixels, or -1 to unset the default width. Height in pixels, or -1 to unset the default height. If the window's "natural" size (its size request) is larger than the default, the default will be ignored. More generally, if the default size does not obey the geometry hints for the window ( can be used to set these explicitly), the default size will be clamped to the nearest permitted size. Unlike which sets a size request for a widget and thus would keep users from shrinking the window, this function only sets the initial size, just as if the user had resized the window themselves. Users can still shrink the window again as they normally would. Setting a default size of -1 means to use the "natural" default size (the size request of the window). For more control over a window's initial size and how resizing works, investigate . For some uses, is a more appropriate function. changes the current size of the window, rather than the size to be used on initial display. always affects the window itself, not the geometry widget. The default size of a window only affects the first time a window is shown; if a window is hidden and re-shown, it will remember the size it had prior to hiding, rather than using the default size. Method System.Void Presents a to the user. This may mean raising the window in the stacking order, deiconifying it, moving it to the current desktop, and/or giving it the keyboard focus, possibly dependent on the user's platform, window manager, and preferences. If window is hidden, this function calls as well. This function should be used when the user tries to open a window that's already open. Say for example the preferences dialog is currently open, and the user chooses Preferences from the menu a second time; use to move the already-open dialog where the user can see it. Method System.Void Hides , then reshows it, resetting the default size and position of the window. Used by GUI builders only. Method System.Void Asks the window manager to move to the given position. X coordinate to move window to. Y coordinate to move window to. Window managers are free to ignore this; most window managers ignore requests for initial window positions (instead using a user-defined placement algorithm) and honor requests after the window has already been shown. Note: the position is the position of the gravity-determined reference point for the window. The gravity determines two things: first, the location of the reference point in root window coordinates; and second, which point on the window is positioned at the reference point. By default the gravity is GDK_GRAVITY_NORTH_WEST, so the reference point is simply the x, y supplied to . The top-left corner of the window decorations (aka window frame or border) will be placed at , . Therefore, to position a window at the top left of the screen, you want to use the default gravity (which is GDK_GRAVITY_NORTH_WEST) and move the window to 0,0. To position a window at the bottom right corner of the screen, you would set GDK_GRAVITY_SOUTH_EAST, which means that the reference point is at x + the window width and y + the window height, and the bottom-right corner of the window border will be placed at that reference point. Method System.Void Sets the position constraint for a . A position constraint. Is is used for placing the window in some area, depending on the constraint. Method System.Void Associate with . A . Such that calling on will activate accelerators in . Method System.Void This method sets up hints about how a can be resized by the user. Widget the geometry hints will be applied to. Struct containing geometry information. Mask indicating which struct fields should be paid attention to. You can set a minimum and maximum size; allowed resize increments (e.g. for xterm, you can only resize by the size of a character); aspect ratios; and more. See . Method System.Void Disposes the resources associated with the object. Constructor Internal constructor Pointer to the C object. An instance of Window, wrapping the C object. This is an internal constructor, and should not be used by user code. Constructor Creates a new Window object, based on the . A . A . Creates a new Window object, wich can be of type TopLevel ( most of the cases ) or PopUp. Take care with the use of PopUp type, since it is not controlled by the window manager. Constructor Internal constructor an object of type This is an internal constructor, and should not be used by user code. Constructor Creates a new TopLevel Window object, with as the title. A string. A . Creates a new TopLevel Window object, using as the title. You get the same if you use the public Window ( Gtk.WindowType type ) constructor and later set the string Title property. Property GLib.List To be added an object of type an object of type To be added Property System.UInt32 The for The for the class. Property Gtk.Widget To be added an object of type an object of type To be added Property System.Boolean To be added an object of type an object of type To be added Property Gdk.Gravity To be added an object of type an object of type To be added Property Gdk.ModifierType To be added an object of type an object of type To be added Property Gdk.WindowTypeHint To be added an object of type an object of type To be added Property Gtk.Window To be added an object of type an object of type To be added Property Gtk.Widget To be added an object of type an object of type To be added Property GLib.List To be added an object of type an object of type To be added Property System.String To be added an object of type an object of type To be added Property System.Boolean Sets if a Window will be decorated or not ( borderless ). A . to decorate the window or if the window has been set to have decorations. With this property you control if a window will be decorated or not. By default, windows are decorated with a title bar and resize controls. Some window managers allow to disable these decorations, creating a borderless Window. If you set this property as false, Gtk# will try to convince the window manager not to decorate the Window. Property System.Boolean Sets if a Window will be resizable by the user or not. an object of type an object of type By default, windows are resizable, so you can change the size of them. But if you set this property to false, the user won't be able to change the size of them. Property Gtk.WindowPosition Property used for setting/getting the window position. an object of type an object of type This property will alow you to define where a Window must be displayed on the screen. It work with the Gtk.WindowPosition enum, soy maybe you should check it before use it. Property System.Int32 Property used for defining the default height of a window. an object of type an object of type This property will allow you to define the default height for your Window. It only define the default one, so if the Window is resized, it won't be able to do anything. Property System.Boolean To be added an object of type an object of type To be added Property System.Boolean To be added an object of type an object of type To be added Property System.Boolean To be added an object of type an object of type To be added Property System.String Property used for setting the Window Title. an object of type an object of type This property will allow you to set the Window Title. The Title of a window will be displayed in its title bar. Since the title bar is rendered by the window managers on X Window System, the way it appears will depend on the user preferences. This title should help the users to distinguish a window from others opened. A good title will have the application name an the actual document, for example. Property Gtk.WindowType To be added an object of type To be added Property System.Int32 To be added an object of type an object of type To be added Property Gdk.Pixbuf To be added an object of type an object of type To be added Property System.Boolean To be added an object of type an object of type To be added Event System.EventHandler To be added To be added Event GtkSharp.MoveFocusHandler To be added To be added Event GtkSharp.SetFocusHandler To be added To be added Event System.EventHandler To be added To be added Event System.EventHandler To be added To be added Event GtkSharp.FrameEventHandler To be added To be added Constructor Internal constructor GLib type for the type Creates a new instance of Window, using the GLib-provided type This is a constructor used by derivative types of that would have their own GLib type assigned to it. This is not typically used by C# code. Property System.Boolean To be added a a To be added Property System.Drawing.Size To be added a To be added Property System.Drawing.Size To be added a To be added Property System.Drawing.Size To be added a a To be added Property Gdk.Screen To be added a a To be added Property System.Boolean To be added a To be added Property System.Boolean To be added a To be added Property System.Boolean To be added a a To be added Property System.Boolean To be added a a To be added Method System.Boolean To be added a a To be added Method System.Void To be added To be added Method System.Boolean To be added a a To be added Method System.Void Asks to toggle off the fullscreen state for . Note that you shouldn't assume the window is definitely not full screen afterward, because other entities (e.g. the user or window manager) could fullscreen it again, and not all window managers honor requests to unfullscreen windows. But normally the window will end up restored to its normal state. Just don't write code that crashes if not.