libgimp/gimpdrawablecombobox.c set a width request on the combo boxes.

2005-03-03  Sven Neumann  <sven@gimp.org>

	* libgimp/gimpdrawablecombobox.c
	* libgimp/gimpimagecombobox.c: set a width request on the combo boxes.

	* plug-ins/common/bumpmap.c (SCALE_WIDTH): set a minimum width on
	the scales.
This commit is contained in:
Sven Neumann 2005-03-03 00:06:28 +00:00 committed by Sven Neumann
parent 92d6b9272d
commit fd308340d4
5 changed files with 33 additions and 18 deletions

View File

@ -1,3 +1,11 @@
2005-03-03 Sven Neumann <sven@gimp.org>
* libgimp/gimpdrawablecombobox.c
* libgimp/gimpimagecombobox.c: set a width-request on the combo boxes.
* plug-ins/common/bumpmap.c (SCALE_WIDTH): set a minimum width on
the scales.
2005-03-02 Manish Singh <yosh@gimp.org>
* libgimp/gimp.[ch]

View File

@ -32,7 +32,8 @@
#include "gimppixbuf.h"
#define MENU_THUMBNAIL_SIZE 24
#define THUMBNAIL_SIZE 24
#define WIDTH_REQUEST 200
static gint gimp_drawable_combo_box_model_add (GtkListStore *store,
@ -74,7 +75,8 @@ gimp_drawable_combo_box_new (GimpDrawableConstraintFunc constraint,
gint i;
combo_box = g_object_new (GIMP_TYPE_INT_COMBO_BOX,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
"width-request", WIDTH_REQUEST,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
NULL);
model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo_box));
@ -133,7 +135,8 @@ gimp_channel_combo_box_new (GimpDrawableConstraintFunc constraint,
gint i;
combo_box = g_object_new (GIMP_TYPE_INT_COMBO_BOX,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
"width-request", WIDTH_REQUEST,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
NULL);
model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo_box));
@ -185,7 +188,8 @@ gimp_layer_combo_box_new (GimpDrawableConstraintFunc constraint,
gint i;
combo_box = g_object_new (GIMP_TYPE_INT_COMBO_BOX,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
"width-request", WIDTH_REQUEST,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
NULL);
model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo_box));
@ -242,8 +246,7 @@ gimp_drawable_combo_box_model_add (GtkListStore *store,
g_free (image_name);
thumb = gimp_drawable_get_thumbnail (drawables[i],
MENU_THUMBNAIL_SIZE,
MENU_THUMBNAIL_SIZE,
THUMBNAIL_SIZE, THUMBNAIL_SIZE,
GIMP_PIXBUF_SMALL_CHECKS);
gtk_list_store_append (store, &iter);

View File

@ -32,7 +32,8 @@
#include "gimppixbuf.h"
#define MENU_THUMBNAIL_SIZE 24
#define THUMBNAIL_SIZE 24
#define WIDTH_REQUEST 200
static void gimp_image_combo_box_model_add (GtkListStore *store,
@ -72,7 +73,8 @@ gimp_image_combo_box_new (GimpImageConstraintFunc constraint,
gint num_images;
combo_box = g_object_new (GIMP_TYPE_INT_COMBO_BOX,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
"width-request", WIDTH_REQUEST,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
NULL);
model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo_box));
@ -113,8 +115,7 @@ gimp_image_combo_box_model_add (GtkListStore *store,
g_free (image_name);
thumb = gimp_image_get_thumbnail (images[i],
MENU_THUMBNAIL_SIZE,
MENU_THUMBNAIL_SIZE,
THUMBNAIL_SIZE, THUMBNAIL_SIZE,
GIMP_PIXBUF_SMALL_CHECKS);
gtk_list_store_append (store, &iter);

View File

@ -32,7 +32,8 @@
#include "gimppixbuf.h"
#define MENU_THUMBNAIL_SIZE 24
#define THUMBNAIL_SIZE 24
#define WIDTH_REQUEST 200
static gint gimp_drawable_combo_box_model_add (GtkListStore *store,
@ -74,7 +75,8 @@ gimp_drawable_combo_box_new (GimpDrawableConstraintFunc constraint,
gint i;
combo_box = g_object_new (GIMP_TYPE_INT_COMBO_BOX,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
"width-request", WIDTH_REQUEST,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
NULL);
model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo_box));
@ -133,7 +135,8 @@ gimp_channel_combo_box_new (GimpDrawableConstraintFunc constraint,
gint i;
combo_box = g_object_new (GIMP_TYPE_INT_COMBO_BOX,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
"width-request", WIDTH_REQUEST,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
NULL);
model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo_box));
@ -185,7 +188,8 @@ gimp_layer_combo_box_new (GimpDrawableConstraintFunc constraint,
gint i;
combo_box = g_object_new (GIMP_TYPE_INT_COMBO_BOX,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
"width-request", WIDTH_REQUEST,
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
NULL);
model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo_box));
@ -242,8 +246,7 @@ gimp_drawable_combo_box_model_add (GtkListStore *store,
g_free (image_name);
thumb = gimp_drawable_get_thumbnail (drawables[i],
MENU_THUMBNAIL_SIZE,
MENU_THUMBNAIL_SIZE,
THUMBNAIL_SIZE, THUMBNAIL_SIZE,
GIMP_PIXBUF_SMALL_CHECKS);
gtk_list_store_append (store, &iter);

View File

@ -119,9 +119,9 @@
/***** Magic numbers *****/
#define PLUG_IN_VERSION "April 2000, 3.0-pre1-ac2"
#define PLUG_IN_VERSION "April 2000, 3.0-pre1-ac2"
#define SCALE_WIDTH 0
#define SCALE_WIDTH 100
/***** Types *****/