mirror of https://github.com/GNOME/gimp.git
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:
parent
92d6b9272d
commit
fd308340d4
|
@ -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]
|
||||
|
|
|
@ -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,6 +75,7 @@ gimp_drawable_combo_box_new (GimpDrawableConstraintFunc constraint,
|
|||
gint i;
|
||||
|
||||
combo_box = g_object_new (GIMP_TYPE_INT_COMBO_BOX,
|
||||
"width-request", WIDTH_REQUEST,
|
||||
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
|
||||
NULL);
|
||||
|
||||
|
@ -133,6 +135,7 @@ gimp_channel_combo_box_new (GimpDrawableConstraintFunc constraint,
|
|||
gint i;
|
||||
|
||||
combo_box = g_object_new (GIMP_TYPE_INT_COMBO_BOX,
|
||||
"width-request", WIDTH_REQUEST,
|
||||
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
|
||||
NULL);
|
||||
|
||||
|
@ -185,6 +188,7 @@ gimp_layer_combo_box_new (GimpDrawableConstraintFunc constraint,
|
|||
gint i;
|
||||
|
||||
combo_box = g_object_new (GIMP_TYPE_INT_COMBO_BOX,
|
||||
"width-request", WIDTH_REQUEST,
|
||||
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
|
||||
NULL);
|
||||
|
||||
|
@ -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);
|
||||
|
|
|
@ -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,6 +73,7 @@ gimp_image_combo_box_new (GimpImageConstraintFunc constraint,
|
|||
gint num_images;
|
||||
|
||||
combo_box = g_object_new (GIMP_TYPE_INT_COMBO_BOX,
|
||||
"width-request", WIDTH_REQUEST,
|
||||
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
|
||||
NULL);
|
||||
|
||||
|
@ -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);
|
||||
|
|
|
@ -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,6 +75,7 @@ gimp_drawable_combo_box_new (GimpDrawableConstraintFunc constraint,
|
|||
gint i;
|
||||
|
||||
combo_box = g_object_new (GIMP_TYPE_INT_COMBO_BOX,
|
||||
"width-request", WIDTH_REQUEST,
|
||||
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
|
||||
NULL);
|
||||
|
||||
|
@ -133,6 +135,7 @@ gimp_channel_combo_box_new (GimpDrawableConstraintFunc constraint,
|
|||
gint i;
|
||||
|
||||
combo_box = g_object_new (GIMP_TYPE_INT_COMBO_BOX,
|
||||
"width-request", WIDTH_REQUEST,
|
||||
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
|
||||
NULL);
|
||||
|
||||
|
@ -185,6 +188,7 @@ gimp_layer_combo_box_new (GimpDrawableConstraintFunc constraint,
|
|||
gint i;
|
||||
|
||||
combo_box = g_object_new (GIMP_TYPE_INT_COMBO_BOX,
|
||||
"width-request", WIDTH_REQUEST,
|
||||
"ellipsize", PANGO_ELLIPSIZE_MIDDLE,
|
||||
NULL);
|
||||
|
||||
|
@ -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);
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
|
||||
#define PLUG_IN_VERSION "April 2000, 3.0-pre1-ac2"
|
||||
|
||||
#define SCALE_WIDTH 0
|
||||
#define SCALE_WIDTH 100
|
||||
|
||||
/***** Types *****/
|
||||
|
||||
|
|
Loading…
Reference in New Issue