KWWidgets/Projects/UIDesigner/Application/PreviousWork/GladeStudyResults: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
mNo edit summary |
No edit summary |
||
Line 15: | Line 15: | ||
These are the basic gtk+ widgets : | These are the basic gtk+ widgets : | ||
:'''1''' Window | :'''1''' Window : A toplevel window which can contain other widgets. [http://developer.gnome.org/doc/API/2.0/gtk/GtkWindow.html GTK+ reference manual] | ||
:'''2''' Menu bar | :'''2''' Menu bar : | ||
:'''3''' Toolbar | :'''3''' Toolbar | ||
:'''4''' Handle box | :'''4''' Handle box | ||
Line 39: | Line 39: | ||
:'''23''' Image | :'''23''' Image | ||
:'''24''' Drawing area | :'''24''' Drawing area | ||
:'''25''' Dialog | :'''25''' Dialog : Used to create popup windows. [http://developer.gnome.org/doc/API/2.0/gtk/GtkDialog.html GTK+ reference manual] | ||
:'''26''' File chooser dialog | :'''26''' File chooser dialog | ||
:'''27''' Color selection dialog | :'''27''' Color selection dialog | ||
Line 62: | Line 62: | ||
These are the additionnal gtk+ widgets : | These are the additionnal gtk+ widgets : | ||
:'''1''' About dialog | :'''1''' About dialog : Creates a window to display information about an application. [http://developer.gnome.org/doc/API/2.0/gtk/GtkAboutDialog.html GTK+ reference manual] | ||
:'''2''' Input dialog | :'''2''' Input dialog | ||
:'''3''' Toolbar button with menus | :'''3''' Toolbar button with menus | ||
Line 96: | Line 96: | ||
===='''•'''Deprecated widgets==== | ===='''•'''Deprecated widgets==== | ||
These widgets are declared depracated | These widgets are declared depracated but still supported : | ||
:'''1''' Columned list | :'''1''' Columned list | ||
Line 109: | Line 109: | ||
===='''•'''GNOME specific additionnal widgets==== | ===='''•'''GNOME specific additionnal widgets==== | ||
With Glade one can create [http://www.gnome.org GNOME] specific projects. These are the GNOME | With Glade one can create [http://www.gnome.org GNOME] specific projects. These are the GNOME specific widgets proposed by Glade : | ||
:'''1''' GNOME application window | :'''1''' GNOME application window | ||
Line 120: | Line 120: | ||
:'''8''' GNOME application bar | :'''8''' GNOME application bar | ||
:'''9''' Bonobo control | :'''9''' Bonobo control | ||
These are the GNOME specific widgets declared deprecated but still supported : | |||
:'''1''' GNOME pixmap | |||
:'''2''' GNOME dialog box | |||
:'''3''' GNOME message box | |||
:'''4''' Property dialog box | |||
:'''5''' GNOME about dialog | |||
:'''6''' Icon list | |||
:'''7''' GNOME entry | |||
:'''8''' GNOME file entry | |||
:'''9''' GNOME pixmap entry | |||
:'''10''' GNOME color picker | |||
:'''11''' GNOME font picker |
Revision as of 19:30, 26 March 2006
Glade
- Glade is a free user interface builder for GTK+ and GNOME, released under the GNU GPL License.
- The user interfaces designed in Glade are saved as XML, and by using the libglade library these can be loaded by applications dynamically as needed. (Glade can also generate C code, though this isn't recommended for large applications.)
- By using libglade, Glade XML files can be used in numerous programming languages including C, C++, Java, Perl, Python, C#, Pike, Ruby, Haskell, Objective Caml and Scheme. Adding support for other languages is easy too.
Quote taken from Glade's portal page.
The version used for this study is version 2.12.0, included in the Breezy Badger release of the Ubuntu distribution.
List of basic widgets
These are the basic gtk+ widgets :
- 1 Window : A toplevel window which can contain other widgets. GTK+ reference manual
- 2 Menu bar :
- 3 Toolbar
- 4 Handle box
- 5 Toolbar with buttons
- 6 Toolbar with toggle buttons
- 7 Toolbar with radio buttons
- 8 Toolbar with separator item
- 9 Label
- 10 Text entry
- 11 Combo box entry
- 12 Text view
- 13 Button
- 14 Toggle button
- 15 Check button
- 16 Radio button
- 17 Combo box
- 18 Spin button
- 19 List or tree view
- 20 Icon view
- 21 Horizontal separator
- 22 Vertical separator
- 23 Image
- 24 Drawing area
- 25 Dialog : Used to create popup windows. GTK+ reference manual
- 26 File chooser dialog
- 27 Color selection dialog
- 28 Font selection dialog
- 29 Horizontal box
- 30 Vertical box
- 31 Table
- 32 Fixed positions
- 33 Horizontal button box
- 34 Vertical button box
- 35 Horizontal panes
- 36 Vertical panes
- 37 Notebook
- 38 Frame
- 39 Scrolled Window
- 40 Status bar
List of additionnal widgets
•Standard additionnal widgets
These are the additionnal gtk+ widgets :
- 1 About dialog : Creates a window to display information about an application. GTK+ reference manual
- 2 Input dialog
- 3 Toolbar button with menus
- 4 Toolbar item
- 5 Horizontal scale
- 6 Vertical scale
- 7 Horizontal ruler
- 8 Vertical ruler
- 9 Alignment
- 10 Event box
- 11 Calendar
- 12 Progress bar
- 13 Layout
- 14 Aspect frame
- 15 Arrow
- 16 Expander
- 17 Curve
- 18 Gamma curve
- 19 Horizontal Scrollbar
- 20 Vertical Scrollbar
- 21 File chooser
- 22 Color selection
- 23 Font selection
- 24 Cell view
- 25 File chooser button
- 26 Color chooser button
- 27 Font chooser button
- 29 Popup menu
- 30 View port
- 31 Custom widget
•Deprecated widgets
These widgets are declared depracated but still supported :
- 1 Columned list
- 2 Columned tree
- 3 List
- 4 Combo box
- 5 File selection dialog
- 6 Option menu
- 7 Preview
•GNOME specific additionnal widgets
With Glade one can create GNOME specific projects. These are the GNOME specific widgets proposed by Glade :
- 1 GNOME application window
- 2 Druid
- 3 GNOME canvas
- 4 Icon selection
- 5 GNOME icon entry
- 6 GNOME HRef link button
- 7 GnomeDataEdit
- 8 GNOME application bar
- 9 Bonobo control
These are the GNOME specific widgets declared deprecated but still supported :
- 1 GNOME pixmap
- 2 GNOME dialog box
- 3 GNOME message box
- 4 Property dialog box
- 5 GNOME about dialog
- 6 Icon list
- 7 GNOME entry
- 8 GNOME file entry
- 9 GNOME pixmap entry
- 10 GNOME color picker
- 11 GNOME font picker