summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Added ChangeLog entry for Johannes's work, fixed some compile warnings.project-tree-modelTristan Van Berkom2010-05-143-3/+20
|
* Updated Shavian transliterationThomas Thurman2010-05-141-1027/+2217
|
* Updated Galician translationFran Diéguez2010-05-141-870/+941
|
* Remove some unneded GTK+ version checksJavier Jardón2010-05-142-11/+0
| | | | We already depends on GTK+ 2.20
* Updated Spanish translationJorge González2010-05-141-860/+958
|
* Update POTFILES.in fileJavier Jardón2010-05-141-1/+1
| | | | | Added src/glade-close-button.c and removed plugins/gtk+/glade-cell-renderer-button.c
* Do not show the event box in signal editorJavier Jardón2010-05-142-0/+6
|
* Updated German translationMario Blättermann2010-05-141-957/+1044
|
* Updated Spanish translationJorge González2010-05-141-22/+7
|
* Fix doap fileOlav Vitters2010-05-141-1/+1
|
* Cache the list of objects in the projectsJohannes Schmid2010-05-143-46/+31
| | | | Fixes some memory leaks and is probably also better performance-wise
* inspector: Bring back old search entryJohannes Schmid2010-05-141-30/+166
|
* Improved search to us partial match instead of prefix matchJohannes Schmid2010-05-121-6/+20
|
* Free the signals correctlyJohannes Schmid2010-05-121-3/+5
| | | | This code is never reached but was wrong nevertheless.
* Make all members of GladeSignalClass const as they should.Johannes Schmid2010-05-121-1/+1
|
* Allow destroying (and recreation) of GladeApp objectJohannes Schmid2010-05-123-13/+12
| | | | | | | | That is what happens when a glade file is loaded in anjuta, then closes and opened again. Currently, we hold an extra reference on GladeApp to avoid destroying it but that's not clean of course and leaves a big mem leak. We cannot free the catalogs though as they register GTypes that we cannot unregister. Thus, we have to keep them in memory once they were loaded.
* Remove debug messagesJohannes Schmid2010-05-121-4/+0
|
* glade-inspector: Add a GtkEntryCompletion to the search entryJohannes Schmid2010-05-091-2/+12
|
* Fix glade_widget_get_children() to always return a correct listJohannes Schmid2010-05-091-9/+10
|
* Fix selection handling in inspector and deleting of widgetsJohannes Schmid2010-05-093-17/+108
|
* glade-widget: Add a g_return_if_fail() if we cannot find an apator for widgetsJohannes Schmid2010-05-092-4/+9
| | | | Also checks in glade-project.c if we found a widget.
* signal-editor: As this derives from GtkVBox there is no need to call ↵Johannes Schmid2010-05-074-27/+9
| | | | | | get_widget() Also fixed files that calles get_widget() to just use the editor instead.
* signal-editor: move column-enum from .h to .c as it is really a private thing.Johannes Schmid2010-05-072-24/+23
|
* signal-editor: clean-up public members and remove silly signals all over.Johannes Schmid2010-05-073-329/+252
| | | | If there is a need for these signals it should be done in another way.
* glade-widget: Don't list children without associated GladeWidget but do it ↵Johannes Schmid2010-05-071-1/+13
| | | | in-place
* glade-project: Fixed bug in glade_project_get_widget_by_name()Johannes Schmid2010-05-071-15/+7
| | | | | It should correctly interate on the list of toplevels. In addition, fixed adjust_naming_policy to avoid a now unnecessary check if this is really a toplevel.
* glade-inspector: Fixed searching and removed lots of obsolete codeJohannes Schmid2010-05-071-301/+63
|
* glade-widget: Don't duplicate the list of childrenJohannes Schmid2010-05-061-12/+1
|
* gladeui: Port inspector to use GladeProject as GtkTreeModel.Johannes Schmid2010-04-183-406/+67
| | | | Also fixed some smaller things in the model itself and added support for icons.
* gladeui: Added nice enum for the model columnsJohannes Schmid2010-04-182-38/+30
| | | | ...and removed some hacky testing code
* gladeui: fixed addition and removal of widgetsJohannes Schmid2010-04-181-14/+0
| | | | | There were some checks that are no longer necessary as our project tree is dynamic which prevented the emission of the "add_widget"-signal.
* gladeui: Finished tree model for GladeProjectJohannes Schmid2010-04-182-87/+120
|
* gladeui: Fix a Gtk-Critical in GladePaletteJohannes Schmid2010-04-181-3/+3
| | | | | Actually gtk+ should provide a gtk_tool_item_group_new_with_label_widget() method but it doesn't and using the construct properties seems broken.
* gladeui: Initial tree model for GladeProjectJohannes Schmid2010-04-182-41/+441
| | | | Add an implementation of the GtkTreeModel interface to GladeProject
* gladeui: Add glade_widget_get_children() convenience layerJohannes Schmid2010-04-182-2/+29
|
* Updated Galician translationsFrancisco Diéguez2010-04-171-198/+107
|
* Updated Spanish translationJorge González2010-04-161-908/+1001
|
* Updated Galician translationFran Diéguez2010-04-141-911/+1142
|
* Updated German doc translationMario Reyer2010-04-071-85/+134
|
* Fixes to Catalan translationJordi Serratosa2010-04-021-1104/+1327
|
* * gladeui/glade-project.c:Tristan Van Berkom2010-04-012-3/+5
| | | | | - Stop showing preferences at project new time (now we have tooltips that tell you this stuff), finally closing bug 574095.
* 2010-04-01 Tristan Van Berkom <tvb@gnome.org>Tristan Van Berkom2010-04-012-4/+15
| | | | | * gladeui/glade-project.c: Display GTK+ in caps and always assume GTK+ as a project dependency (so that empty projects still depend on GTK+ for display purposes).
* * src/glade-window.c:Tristan Van Berkom2010-03-312-11/+71
| | | | - Added option to show/hide statusbar in the View menu and session data.
* * gladeui/glade-signal-editor.c: Save some space in treeview column headers.Tristan Van Berkom2010-03-312-2/+3
|
* * gladeui/glade-base-editor.c: Fixed to unref in ->dispose() and to unset ↵Tristan Van Berkom2010-03-312-7/+22
| | | | | | the loaded widget in the signal editor when doing so.
* * src/Makefile.am, src/glade-close-button.[ch]: Using Paolo Borelli's close ↵Tristan Van Berkom2010-03-3111-23/+519
| | | | | | | | | | | | | | | | button code for notebook tab close buttons. * src/glade-window.c: - Added option to disable toolbar in View menu and session data (bug 586194). - Added option to show notebook tabs for open projects also in the View menu and session data. * gladeui/glade-palette.c: Made "both" mode use text horizontally again, still get alot of unwanted ellipsize here. * gladeui/glade-project.c: Added the targets-changed signal to refresh views with data about target project versions (notebook tabs).
* * plugins/gtk+/gtk+.xml.in: Removed GtkUIManager as its not really editable ↵Tristan Van Berkom2010-03-302-3/+3
| | | | | | in Glade but still asks for an icon at startup.
* * gladeui/glade-signal-editor.c: Fixed access to signal name in object ↵Tristan Van Berkom2010-03-303-6/+21
| | | | | | dialog hander (was a crasher). * gladeui/glade-widget.c: Fixed GladeWidget to update support warnings on newly added signals.
* 2010-03-30 Tristan Van Berkom <tvb@gnome.org>Tristan Van Berkom2010-03-303-1/+34
| | | | | | * plugins/gtk+/glade-gtk.c, plugins/gtk+/gtk+.xml.in: Block the glade_gtk_text_buffer_changed() handler when updating the buffer text (this feedback loop was causing segfaults when undoing modifications to a text buffer's text).
* * gladeui/glade-popup.c: Allow adding new actions to action groups from the ↵Tristan Van Berkom2010-03-296-218/+485
| | | | | | | | | | | palette ("Add widget here"). * plugins/gtk+/glade-accels.[ch]: Moved individual accelerator [de]serialization here, special integration for action types, for actions only show one accelerator and dont load/save the "activate" signal name. * plugins/gtk+/glade-gtk.c, plugins/gtk+/gtk+.xml.in: Added support for GtkActionGroup <--> GtkAction relationships and support for editing/loading/saving of accelerators which can be associated with actions inside an action group.