summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* docs: enum cleanupMatthias Clasen2014-05-203-17/+16
| | | | | Move GtkArrowPlacement to the GtkMenu docs. This type is only used for a style property there.
* docs: enum cleanupMatthias Clasen2014-05-201-1/+1
| | | | Move GtkAccelFlags to the GtkAccelGroup docs.
* Updated Hebrew translationYosef Or Boczko2014-05-201-11/+43
|
* docs: Fix make distRico Tzschichholz2014-05-201-0/+2
|
* Add man pages for gtk3-demo and gtk3-widget-factoryMatthias Clasen2014-05-194-0/+122
| | | | We install the applications, so they should also have some docs.
* docs: Trivial typo fixMatthias Clasen2014-05-191-1/+1
|
* Updated POTFILES.inPiotr Drąg2014-05-201-0/+1
|
* gdk: assorted introspection and documentation fixesEvan Nemerson2014-05-199-26/+32
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=729983
* GtkSettings: load modules from settings.iniMatthias Clasen2014-05-191-0/+1
| | | | | | | The initialization is really suboptimal here. This fix at least makes it so that we don't forget to load modules. https://bugzilla.gnome.org/show_bug.cgi?id=730306
* Updated Russian translationYuri Myasoedov2014-05-191-1552/+1683
|
* popover: Check for uncaught button events from childrenCarlos Garnacho2014-05-191-2/+4
| | | | | | And deal correctly with those as a click within the popover. https://bugzilla.gnome.org/show_bug.cgi?id=727994
* popover: Do not hide the popover if the focus widget is just unsetCarlos Garnacho2014-05-191-2/+2
| | | | | | The focus widget might be unset, just to be set again on a widget inside the popover. Have the popover wait till the focus is actually moved outside before dismissing.
* inspector: Build out the resource informationMatthias Clasen2014-05-192-30/+111
| | | | Show type and size for each resource.
* Fix doc syntaxMatthias Clasen2014-05-191-2/+1
| | | | End-of-comment tags don't take an @ - thats only for parameters.
* inspector: string fixesMatthias Clasen2014-05-192-5/+8
| | | | Mark user-visible strings for translation in the new property editor.
* inspector: Link to model for attributesMatthias Clasen2014-05-193-2/+69
|
* widget: Untagle if statementsBenjamin Otte2014-05-191-11/+8
| | | | Reduces the number of nested ifs and makes the code clearer.
* inspector: redo property editingMatthias Clasen2014-05-189-539/+1334
| | | | | | | | Move away from cell editing, and use a popover instead. This makes it easier to e.g. use a color chooser - there's just not enough room in a cell for many things. Much of this code is adapted from tests/prop-editor.c.
* GtkAssistant: Avoid a crashMatthias Clasen2014-05-181-2/+6
| | | | | | The child properties in GtkAssistant are somewhat broken, since they are not on direct children - but that is no reason to crash if somebody does ask for child properties of direct children.
* API: Deprecate gtk_container_set_reallocate_redraws()Benjamin Otte2014-05-182-1/+4
|
* Fix a typoMichael Catanzaro2014-05-171-1/+1
|
* API: Deprecate gtk_widget_region_intersect()Benjamin Otte2014-05-182-1/+4
| | | | | It's unused and would become disambiguous once we split between allocation and draw region.
* API: Deprecate gtk_widget_reparent()Benjamin Otte2014-05-173-2/+8
|
* Updated Hebrew translationYosef Or Boczko2014-05-181-11/+26
|
* inspector: Allow sorting signalsMatthias Clasen2014-05-171-0/+2
|
* inspector: Allow sorting properties by originMatthias Clasen2014-05-171-1/+1
|
* treeview: Don't show missing imagesMatthias Clasen2014-05-171-0/+5
| | | | | | | | When a model is sortable, but the the column is not currently used for sorting, we want to reserve the space for showing the sort indicator. But we currently set the icon to 'missing-image', which is not great to show all over the place. So, just set the opacity to 0.
* Improve punctuation in a new translatable stringPiotr Drąg2014-05-171-1/+1
|
* inspector: Add a first-time warningMatthias Clasen2014-05-162-16/+74
| | | | | | | | | With the keybinding, it is possible that users may trigger the inspector unintentionally. Show a dialog that informs them about whats going on and gives them a chance to back out. The warning dialog can be bypassed with the org.gtk.Settings.Debug inspector-warning setting.
* inspector: Drop an unused widgetMatthias Clasen2014-05-162-9/+0
|
* wayland: Clean up init code a tiny bitJasper St. Pierre2014-05-161-8/+4
|
* wayland: Simplify roundtrip initializationJasper St. Pierre2014-05-162-40/+2
| | | | | | All the globals we care about should appear before doing anything else, up-front, so a single round-trip after adding the registry should be more than enough.
* wayland: Remove unused stuffJasper St. Pierre2014-05-163-42/+1
|
* Trivial syntax fixMatthias Clasen2014-05-161-1/+0
|
* GtkInspector: Fix Build on WindowsChun-wei Fan2014-05-163-4/+33
| | | | | | | | | | | | | Update visual.c to use Windows themes rather than the stock Raleigh theme, and avoid hardcoding data paths for Windows (and Mac). As the dlfcn.h functions are only used when Python is enabled, move its inclusion there[*]. Also ensure that variables are declared on the top of the block. [*] Python support Windows needs to be investigated, as POSIX signal handling is used there. https://bugzilla.gnome.org/show_bug.cgi?id=730236
* Updated POTFILES.skipPiotr Drąg2014-05-162-0/+3
|
* Docs: Update an example to use current APIMatthias Clasen2014-05-161-2/+1
|
* Visual Studio Builds: Build GtkInspectorChun-wei Fan2014-05-1610-0/+385
| | | | | | | | Add project files to build the GtkInspector sources, as gtk-inspector is a required portion for GTK+. "Install" the org.gtk.Settings.Debug.gschema.xml gsettings schema file as well, so that people can trigger GtkInspector as they develop and test their GTK+-based programs.
* inspector: Show tree model contentsMatthias Clasen2014-05-162-78/+104
|
* gdkselection-win32.c: Declare Variables At Top Of BlockChun-wei Fan2014-05-161-3/+6
| | | | ...so that builds on Visual C++ can be fixed.
* inspector: Set a window iconMatthias Clasen2014-05-153-0/+2
|
* inspector: Improve actions tabMatthias Clasen2014-05-152-30/+172
| | | | React to action group changes, and allow changing action states.
* inspector: ellipsize long pathsMatthias Clasen2014-05-151-0/+6
|
* cssimage: Implement symbolic coloring for -gtk-icontheme()Benjamin Otte2014-05-162-7/+24
|
* Updated Hebrew properties translationYosef Or Boczko2014-05-161-1061/+1079
|
* Updated Hebrew translationYosef Or Boczko2014-05-161-3/+11
|
* Updated POTFILES.inYosef Or Boczko2014-05-161-1/+1
|
* inspector: Show resourcesMatthias Clasen2014-05-158-0/+334
| | | | | Show a list of all registered resources. If a resource looks like text or an image, we show its content.
* inspector: Redraw when visual debugging tools are toggledMatthias Clasen2014-05-151-0/+17
| | | | This doesn't address the pixel cache yet.
* inspector: Don't show internal build idsMatthias Clasen2014-05-151-11/+17
| | | | These ___object_x___ ids just clutter up the tree.