Tristan Van Berkom
0b3e2ffee6
Removing size_request from GtkToolPalette
...
Note GtkToolPalette is internally height-for-width, it needs to
be refactored to cooperate with GTK+'s height-for-width geometry
management properly.
2010-10-30 17:35:19 +09:00
Matthias Clasen
bf75f63f49
Remove size_request from GtkToolbar
...
This is just a bandaid fix, the toolbar should really return proper
min/natural sizes, so that we can handle the overflow properly.
2010-10-30 17:35:19 +09:00
Matthias Clasen
f3d5e20cff
Remove size_request from GtkTable
2010-10-30 17:35:19 +09:00
Tristan Van Berkom
cd2a7a899f
Removing size_request from GtkTreeview.
...
This should be implemented as propery height-for-width by
the treeview-refactor branch. This commit includes a FIXME
comment that scroll adjustments should not be updated from
inside size requests but only after receiving an allocation.
2010-10-30 17:35:19 +09:00
Matthias Clasen
113362b169
Remove size_request from GtkRuler
2010-10-30 17:35:19 +09:00
Matthias Clasen
7f8d92f02c
Remove size_request from GtkPathBar
2010-10-30 17:35:19 +09:00
Matthias Clasen
70c81d6651
Remove size_request from GtkSeparator
2010-10-30 17:35:19 +09:00
Matthias Clasen
4927c16486
Remove size_request from GtkRange
2010-10-30 17:35:19 +09:00
Matthias Clasen
53744b6daf
Fix a typo
2010-10-30 17:35:19 +09:00
Matthias Clasen
6b5debcaca
Remove size_request from GtkPaned
...
This is not the final word; GtkPaned should really implement
height-for-width, but I didn't have time to complete that now.
2010-10-30 17:35:18 +09:00
Ivar Smolin
c823f33516
[l10n] Updated Estonian translation
2010-10-30 17:35:18 +09:00
Tristan Van Berkom
34e1cd373b
Removed size_request from GtkOffscreenWindow
2010-10-30 17:35:18 +09:00
Tristan Van Berkom
af0c4bc656
Removed size_request from GtkNotebook
2010-10-30 17:35:18 +09:00
Tristan Van Berkom
e9f541dc51
Removed size_request from GtkMenuBar
2010-10-30 17:35:18 +09:00
Tristan Van Berkom
0f9c04769b
Removed size_request from GtkImageMenuItem
2010-10-30 17:35:18 +09:00
Tristan Van Berkom
8565b86223
Removed size_request from GtkIconView.
2010-10-30 17:35:18 +09:00
Tristan Van Berkom
399f353427
Remove size_request from GtkHandleBox
2010-10-30 17:35:18 +09:00
Tristan Van Berkom
16512bd9d3
Fixed unused variable in get_preferred_height().
2010-10-30 17:35:18 +09:00
Matthias Clasen
f336754a8f
Remove size_request from GtkSpinButton
2010-10-30 17:35:18 +09:00
Matthias Clasen
eca2d782ce
Remove size_request from GtkProgressBar
2010-10-30 17:35:17 +09:00
Matthias Clasen
f83403098d
Remove size_reuqest from GtkImage
2010-10-30 17:35:17 +09:00
Matthias Clasen
d4a07d5661
Remove size_request from GtkLayout
2010-10-30 17:35:17 +09:00
Matthias Clasen
381cd8b07c
Remove size_request from GtkHSV
2010-10-30 17:35:17 +09:00
Matthias Clasen
b3f6f67c33
Remove size_request from GtkFixed
2010-10-30 17:35:17 +09:00
Matthias Clasen
e165c6c884
Remove size_request from GtkEntry
2010-10-30 17:35:17 +09:00
Matthias Clasen
2e4e7264e6
Remove size_request from GtkCheckButton
2010-10-30 17:35:17 +09:00
Matthias Clasen
23a9127765
Remove size_request from GtkCalendar
2010-10-30 17:35:17 +09:00
Matthias Clasen
2078db969c
Remove size_request from GtkButtonBox
2010-10-30 17:35:17 +09:00
Matthias Clasen
42de07f2f3
Remove size_request from GtkAssistant
2010-10-30 17:35:17 +09:00
Javier Jardón
65dd3460ce
Fix gtk-doc markup: /* <private> */ should be /*< private >*/
2010-10-30 17:35:17 +09:00
Tristan Van Berkom
abcfd2d5ef
Merge branch 'master' into treeview-refactor
2010-10-27 01:06:58 +09:00
Tristan Van Berkom
695e427522
Added most of the request code for GtkCellAreaBox
...
Added the following to GtkCellAreaBox:
- GtkCellAreaBox:spacing property defines spacing between cells
- GtkCellAreaBox:align-cells property defines whether cells should
be aligned with cells in adjacent rows.
- Implementations for get_preferred_width / get_preferred_height
- Implementations for get_preferred_height_for_width and the other
when the box is oriented in the easy way (i.e. height_for_width()
implemented for a vertical box, no virtual allocations done yet).
2010-10-27 01:01:58 +09:00
Fran Diéguez
fca72da479
Updated galician translations
2010-10-26 17:00:40 +02:00
Matthias Clasen
b69232e51b
Stop calling GtkWidget parameters 'request'
...
There were at least a few places where we were using GTK_WIDGET()
on something that was already a GtkWidget*, just because it was
named wrong.
2010-10-26 10:53:46 -04:00
Tristan Van Berkom
11f8dfe3f4
Finished up initial revision of GtkCellAreaBoxIter
...
The interaction between this class and GtkCellAreaBox could
use some optimization, maybe the cells and their sizes should
be returned as a list and iterated over at the same time as
requesting sizes instead of the hash table approach currently
taken, however the code is clean this way for now.
2010-10-26 23:01:17 +09:00
Tristan Van Berkom
97e3ccc58b
Added GtkCellAreaBox subclass to handle alignments of cells across rows inside a GtkCellAreaBox.
2010-10-26 18:22:59 +09:00
Tristan Van Berkom
b5e529f578
Added GtkCellAreaIter class
...
Added base class to hold alignment and overall size request information
while itterating over the size requests of various rows of a GtkTreeModel,
updated GtkCellArea/GtkCellAreaBox classes accordingly.
2010-10-26 17:14:20 +09:00
Yaron Shahrabani
bb77ea4a2c
Update properties Hebrew translation.
2010-10-26 08:32:32 +02:00
Xan Lopez
9c7016ab87
gtkcomboboxtext: remove unused variable
2010-10-26 15:18:35 +09:00
Javier Jardón
5aea672e00
gtk.symbols: Add scrollable policy API
2010-10-26 06:07:43 +02:00
Javier Jardón
8dd7ae38f9
gtkfilechooserentry: Use accessor functions to access GtkEntry
2010-10-26 06:07:43 +02:00
Javier Jardón
0b72acf78d
gtkspinbutton: Use accessor functions to access GtkEntry
2010-10-26 06:07:42 +02:00
Javier Jardón
f5615022a7
Use accessor functions to access GtkButton
2010-10-26 06:07:42 +02:00
Javier Jardón
8991603c88
gtktogglebutton: move public members to private structure
2010-10-26 06:07:42 +02:00
Javier Jardón
49446ed57c
gtktogglebutton: Add _gtk_toggle_button_set_active private accessor
...
It's needed by gtkradiobutton
2010-10-26 06:07:42 +02:00
Javier Jardón
a93e79f8d2
gtkradiobutton: Use accessor functions to access GtkToggleButton
2010-10-26 06:07:42 +02:00
Javier Jardón
783d18650b
gtkcheckbutton: Use accessor functions to access GtkToggleButton
2010-10-26 06:07:42 +02:00
Javier Jardón
356cfaa084
gtktoggletoolbutton: Use accessor functions to access GtkToggleButton
2010-10-26 06:07:42 +02:00
Javier Jardón
fda588d10d
gail: use accessor functions to access GtkToggleButton
2010-10-26 06:07:33 +02:00
Javier Jardón
49c409c498
tests: use accessor functions to access GtkToogleButton
2010-10-26 05:02:19 +02:00