X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=glabels2%2Fsrc%2Fobject-editor-size-page.c;h=58dcbf2c7dde09292b1b6b4505c6397ce3b5bcec;hb=cbfdf9f8ce58c238a8eb5535c617599ad5570d1f;hp=5e3ab9d30ad08c8af858ddccd07351a06dc02c80;hpb=6f1394ef48f3a3fd4efb06247cced9db2fdb6d54;p=glabels diff --git a/glabels2/src/object-editor-size-page.c b/glabels2/src/object-editor-size-page.c index 5e3ab9d3..58dcbf2c 100644 --- a/glabels2/src/object-editor-size-page.c +++ b/glabels2/src/object-editor-size-page.c @@ -1,26 +1,23 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */ - /* - * (GLABELS) Label and Business Card Creation program for GNOME - * - * object-editor.c: object properties editor module + * object-editor-size-page.c + * Copyright (C) 2003-2009 Jim Evins . * - * Copyright (C) 2003 Jim Evins . + * This file is part of gLabels. * - * This program is free software; you can redistribute it and/or modify + * gLabels is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * gLabels is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * along with gLabels. If not, see . */ + #include #include "object-editor.h" @@ -37,18 +34,22 @@ #include "debug.h" + /*===========================================*/ /* Private macros */ /*===========================================*/ + /*===========================================*/ /* Private data types */ /*===========================================*/ + /*===========================================*/ /* Private globals */ /*===========================================*/ + /*===========================================*/ /* Local function prototypes */ /*===========================================*/ @@ -73,7 +74,7 @@ gl_object_editor_prepare_size_page (glObjectEditor *editor, gl_debug (DEBUG_EDITOR, "START"); /* Extract widgets from XML tree. */ - gl_util_get_builder_widgets (editor->priv->gui, + gl_util_get_builder_widgets (editor->priv->builder, "size_page_vbox", &editor->priv->size_page_vbox, "size_w_spin", &editor->priv->size_w_spin, "size_h_spin", &editor->priv->size_h_spin, @@ -137,6 +138,7 @@ gl_object_editor_prepare_size_page (glObjectEditor *editor, gl_debug (DEBUG_EDITOR, "END"); } + /*--------------------------------------------------------------------------*/ /* PRIVATE. Maintain aspect ratio checkbox callback. */ /*--------------------------------------------------------------------------*/ @@ -164,6 +166,7 @@ aspect_toggle_cb (glObjectEditor *editor) gl_debug (DEBUG_EDITOR, "END"); } + /*--------------------------------------------------------------------------*/ /* PRIVATE. W spin button changed callback. */ /*--------------------------------------------------------------------------*/ @@ -198,6 +201,7 @@ w_spin_cb (glObjectEditor *editor) gl_debug (DEBUG_EDITOR, "END"); } + /*--------------------------------------------------------------------------*/ /* PRIVATE. H spin button changed callback. */ /*--------------------------------------------------------------------------*/ @@ -232,6 +236,7 @@ h_spin_cb (glObjectEditor *editor) gl_debug (DEBUG_EDITOR, "END"); } + /*--------------------------------------------------------------------------*/ /* PRIVATE. Reset image size callback. */ /*--------------------------------------------------------------------------*/ @@ -286,6 +291,7 @@ size_reset_cb (glObjectEditor *editor) gl_debug (DEBUG_EDITOR, "END"); } + /*****************************************************************************/ /* Set size. */ /*****************************************************************************/ @@ -320,6 +326,7 @@ gl_object_editor_set_size (glObjectEditor *editor, gl_debug (DEBUG_EDITOR, "END"); } + /*****************************************************************************/ /* Set maximum size. */ /*****************************************************************************/ @@ -366,6 +373,7 @@ gl_object_editor_set_max_size (glObjectEditor *editor, gl_debug (DEBUG_EDITOR, "END"); } + /*****************************************************************************/ /* Set base or natural size of image. */ /*****************************************************************************/ @@ -381,6 +389,7 @@ gl_object_editor_set_base_size (glObjectEditor *editor, editor->priv->h_base = h_base; } + /*****************************************************************************/ /* Query size. */ /*****************************************************************************/ @@ -407,6 +416,7 @@ gl_object_editor_get_size (glObjectEditor *editor, gl_debug (DEBUG_EDITOR, "END"); } + /*****************************************************************************/ /* PRIVATE. Prefs changed callback. Update units related items. */ /*****************************************************************************/ @@ -454,3 +464,13 @@ size_prefs_changed_cb (glObjectEditor *editor) gl_debug (DEBUG_EDITOR, "END"); } + + +/* + * Local Variables: -- emacs + * mode: C -- emacs + * c-basic-offset: 8 -- emacs + * tab-width: 8 -- emacs + * indent-tabs-mode: nil -- emacs + * End: -- emacs + */