- 19 Sep, 2008 1 commit
-
-
Tristan Van Berkom authored
Now we have a conversion routine that is run in the plugin to convert some data for one format to another (builder on the way...) In this patch we use it to handle GtkAdjustment property conversions. (NOTE: Completely undoable) * gladeui/glade-editor-property.c: Made adjustment eprop fallback on object dialog in builder cases. * gladeui/glade-command.[ch]: Added glade_command_set_project_format() * gladeui/gldae-catalog.c, gladeui/glade-xml-utils.h: Added GladeProjectConvertFunc * plugins/gtk+/Makefile.am, plugins/gtk+/glade-convert.c, plugins/gtk+/gtk+.xml.in: New file to handle conversion routines, added some objects. svn path=/trunk/; revision=1935
-
- 18 Sep, 2008 10 commits
-
-
Tristan Van Berkom authored
svn path=/trunk/; revision=1933
-
Juan Pablo Ugarte authored
* plugins/gtk+/gtk+.xml.in: o set packing GtkBox::position as save-always (bug #551060) o set packing GtkToolbar::expand as save-always (bug #544654) svn path=/trunk/; revision=1932
-
Tristan Van Berkom authored
svn path=/trunk/; revision=1931
-
Tristan Van Berkom authored
code (bug 549685) svn path=/trunk/; revision=1930
-
Tristan Van Berkom authored
* plugins/gtk+/glade-gtk.c: insert before/after in box is working now (bug 550636). svn path=/trunk/; revision=1929
-
Tristan Van Berkom authored
* src/glade-window.c: - Show glade widgets in the workspace on selection changes in the project and not on item-activated. - Rename "Dock Editor" -> "Dock Properties" as per bug 487613. * gladeui/glade-design-layout.c: Fixed expose event to chain to parent class after drawing an orange box (non window widgets are usualy GTK_NO_WINDOW). * gladeui/glade-widget.c: Made glade_widget_show() show the toplevel of any GtkWidget object, also now shows toplevel non window glade widgets in the workspace, if the widget is referenced by a property that as a result parents the widget (i.e. bears a "parentless-widget" property reference), then the referencing widget is shown instead. * gladeui/glade-popup.c: Added devhelp icon to documentation menu item, added docs icon to normal menu. svn path=/trunk/; revision=1928
-
Christian Persch authored
* gladeui/glade-app.c: (glade_app_show_properties), (glade_app_hide_properties): * gladeui/glade-command.c: (glade_command_pop_group): Replace the deprecated G_GNUC_PRETTY_FUNCTION with G_STRFUNC. Bug #512559. svn path=/trunk/; revision=1927
-
Christian Persch authored
* plugins/Makefile.am: Install the catalogue DTD. Bug #552767. svn path=/trunk/; revision=1926
-
Matej Urbančič authored
svn path=/trunk/; revision=1925
-
Djihed Afifi authored
* Updated Arabic Translation by Anas Afif Emad. svn path=/trunk/; revision=1921
-
- 17 Sep, 2008 4 commits
-
-
Christian Kirbach authored
* de.po: Updated German translation. svn path=/trunk/; revision=1920
-
Tristan Van Berkom authored
* gladeui/glade-editor.[ch]: Exposed doc_search() command for palette popup * gladeui/glade-popup.[ch]: Added glade_popup_palette_pop(), with add widget as toplevel feature & doc search feature. * gladeui/glade-palette-item.c: Handle right-click for popup * gladeui/glade-inspector.c: Make inspector list widgets in natural order * gladeui/glade-project.c: Fixed widget order list (bug 422823) * gladeui/glade-gtk.c: Fixed widget order inside GtkTable (bug 422823 - patch by Pavel Kostyuchenko) svn path=/trunk/; revision=1919
-
Philip Withnall authored
2008-09-17 Philip Withnall <philip@tecnocode.co.uk> * en_GB.po: Updated British English translation. svn path=/trunk/; revision=1915
-
Sandeep Shedmake authored
svn path=/trunk/; revision=1914
-
- 16 Sep, 2008 8 commits
-
-
Tristan Van Berkom authored
* gladeui/glade-widget.c: Reverted the above patch portion where built objects only had thier construct props set, this caused errors, fixed. Also fixed a bug in previous copy of glade-editor-proeprty.c svn path=/trunk/; revision=1913
-
Daniel Nylander authored
svn path=/trunk/; revision=1912
-
Jorge Gonzalez Gonzalez authored
svn path=/trunk/; revision=1911
-
Tristan Van Berkom authored
* gladeui/glade-xml-utils.h: Added version macros * plugins/gtk+/gtk+.xml.in: Added version 2.14 * gladeui/glade-project.c: Now glade loads and saves requires metadata as comments at the toplevel in libglade and older versions of gtk+ that dont recognize versioning (i.e. gtk+ < 2.14) (bug 536310) svn path=/trunk/; revision=1910
-
Tristan Van Berkom authored
* src/glade-window.c: Fixed projects menu bug (bug 532156, fix by Pavel Kostyuchenko). svn path=/trunk/; revision=1909
-
Pavel Kostyuchenko authored
2008-09-16 Pavel Kostyuchenko <ShprotX@gmail.com> * gladeui/glade-app.c: Creating toplevel widget through unified glade-palette interface. Removed error message when pasting non-toplevel widgets without a parent. * gladeui/glade-command.h: A new function for getting depth of command recursion * gladeui/glade-command.c: A new function for getting depth of command recursion. A return value of glade_command_set_property_execute function is valid and is respected by glade_command_set_properties_list. indicate success/failure of their execution. Glade-command can be unified to null. Setting property command is always executed as a group, so if there is any recursive command, they will be added to that group. Removed parentless widget message level lowered from critical to message. Widget is treated as toplevel only if it has no parent. Removed an assertion from glade_command_create that doesn't allow creation of non-GtkWindow parentless widgets * gladeui/glade-editor-property.c: Object selection dialog will be optionally filled by parentless non-GtkWindow widgets only Unparenting root widgets before setting another property to them * gladeui/glade-inspector.c: Popup for clicking even on empty part of widget list * gladeui/glade-palette.h: A unified function for creating root widgets * gladeui/glade-palette.c: A unified function for creating root widgets A new button for creating root widgets * gladeui/glade-placeholder.[ch]: glade_placeholder_get_project has been made public for using in glade-popup * gladeui/glade-popup.c: A new function glade_popup_simple_pop for creating a context menu on an empty space of glade-inspector New context menu items for adding widgets * gladeui/glade-popup.h: A new function glade_popup_simple_pop for creating a context menu on an empty space of glade-inspector * gladeui/glade-project.c: Unifying command even if there's redo items. Unifying atomic commands only. Unifying to null * gladeui/glade-property-class.[ch]: A new field for making properties that points to parentless widgets * gladeui/glade-property.h: Added a return value to glade_property_set* functions to indicate success/failure that is used in glade-command * gladeui/glade-property.c: Ignoring parentless_widget properties while duplicating properties. Additional check while adding/removing property reference Added a return value to glade_property_set* functions to indicate success/failure that is used in glade-command. Determining that property is changed using glade-proproperty method instead of direct comparing GValue. Loading properties through glade-widget-adaptor interface instead of getting them directly. remove_object method now unsets referencing property instead of setting it. Removed dummy duplicated setting of property while unsetting referencing property. * gladeui/glade-property.h: Added a return value to glade_property_set* functions to indicate success/failure that is used in glade-command. * gladeui/glade-widget.c: Removed setting widget properties to template/default values while building a new object, because they will be set later in constructor. Reloading properties after duplicating a widget. A new function for removing parent reference, that was made by setting parentless_widget property to the widget. Saving and loading parentless_widget properties while rebuilding, because they cannot be duplicated. Corrected destroying of an old widget while rebuilding. Seems like it's not fully correct still. * gladeui/glade-widget.h: A new function for removing parent reference, that was made by setting parentless_widget property to the widget. * gladeui/glade-xml-utils.h: A new tag "parentless-widget" as a property attribute * plugins/gtk+/glade-gtk.c, plugins/gtk+/gtk+.xml.in: Removed an old hack for "image" property of GtkMessageDialog. A new implementation of "image" property using parentless_widget kind of property. Added an ability of working with parentless widgets using "remove parent" and "add parent" items of context menu svn path=/trunk/; revision=1908
-
Tristan Van Berkom authored
* plugins/gtk+/glade-gtk.c: Made insert/remove column/row on gtktable take packing property order into account (bug 503355 fix by Eli Collins). svn path=/trunk/; revision=1907
-
Tristan Van Berkom authored
* gladeui/glade-design-layout.c: Fixed calculation to get deepest wrapped glade widget (bug 539924 - fix by Pavel Kostyuchenko). svn path=/trunk/; revision=1906
-
- 15 Sep, 2008 3 commits
-
-
Juan Pablo Ugarte authored
* plugins/gtk+/glade-gtk.c, plugins/gtk+/gtk+.xml.in: added glade_gtk_label_string_from_value() to avoid param spec warnings svn path=/trunk/; revision=1905
-
Changwoo Ryu authored
svn path=/trunk/; revision=1904
-
Djihed Afifi authored
* Updated Arabic Translation by Djihed Afifi. svn path=/trunk/; revision=1903
-
- 14 Sep, 2008 4 commits
-
-
Praveen Arimbrathodiyil authored
svn path=/trunk/; revision=1902
-
Ilkka Tuohela authored
svn path=/trunk/; revision=1901
-
Djihed Afifi authored
* Updated Arabic Translation by Djihed Afifi. svn path=/trunk/; revision=1900
-
Luca Ferretti authored
2008-09-14 Luca Ferretti <elle.uca@libero.it> * it.po: Updated Italian translation by Andrea Zagli. svn path=/trunk/; revision=1899
-
- 13 Sep, 2008 2 commits
-
-
Yair Hershkovitz authored
svn path=/trunk/; revision=1898
-
Baris Cicek authored
svn path=/trunk/; revision=1897
-
- 12 Sep, 2008 1 commit
-
-
Alexander Shopov authored
2008-09-12 Alexander Shopov <ash@contact.bg> * bg.po: Updated Bulgarian translation by Yavor Doganov <yavor@gnu.org> svn path=/trunk/; revision=1896
-
- 11 Sep, 2008 1 commit
-
-
Rajesh Ranjan authored
svn path=/trunk/; revision=1895
-
- 10 Sep, 2008 3 commits
-
-
Gabor Keleman authored
svn path=/trunk/; revision=1894
-
Gabor Kelemen authored
2008-09-10 Gabor Kelemen <kelemeng@gnome.hu> * hu.po: Translation updated. svn path=/trunk/; revision=1893
-
Leonardo Ferreira Fontenelle authored
2008-09-09 Leonardo Ferreira Fontenelle <leonardof@gnome.org> * pt_BR.po: Brazilian Portuguese translation updated by Vladimir Melo. svn path=/trunk/; revision=1892
-
- 09 Sep, 2008 1 commit
-
-
Matej Urbančič authored
svn path=/trunk/; revision=1891
-
- 07 Sep, 2008 2 commits
-
-
Nickolay V. Shmyrev authored
2008-09-07 Nickolay V. Shmyrev <nshmyrev@yandex.ru> * ru.po: Updated Russian translation by Yuriy Penkin. svn path=/trunk/; revision=1890
-
Duarte Loreto authored
2008-09-07 Duarte Loreto <happyguy_pt@hotmail.com> * pt.po: Updated Portuguese translation. svn path=/trunk/; revision=1889
-