~valavanisalex/ubuntu/oneiric/inkscape/inkscape_0.48.1-2ubuntu4

« back to all changes in this revision

Viewing changes to src/dialogs/guidelinedialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook, Kees Cook, Ted Gould
  • Date: 2008-02-10 14:20:16 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080210142016-vcnb2zqyhszu0xvb
Tags: 0.46~pre1-0ubuntu1
[ Kees Cook ]
* debian/control:
  - add libgtkspell-dev build-dep to gain GtkSpell features (LP: #183547).
  - update Standards version (no changes needed).
  - add Vcs and Homepage fields.
  - switch to new python-lxml dep.
* debian/{control,rules}: switch from dpatch to quilt for more sanity.
* debian/patches/20_fix_glib_and_gxx43_ftbfs.patch:
  - merged against upstream fixes.
  - added additional fixes for newly written code.
* debian/rules: enable parallel building.

[ Ted Gould ]
* Updating POTFILES.in to make it so things build correctly.
* debian/control:
  - add ImageMagick++ and libboost-dev to build-deps

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 *
5
5
 * Author:
6
6
 *   Andrius R. <knutux@gmail.com>
 
7
 *   Johan Engelen
7
8
 *
8
 
 * Copyright (C) 2006 Authors
 
9
 * Copyright (C) 2006-2007 Authors
9
10
 *
10
11
 * Released under GNU GPL.  Read the file 'COPYING' for more information
11
12
 */
20
21
#include <gtkmm/stock.h>
21
22
#include <gtkmm/adjustment.h>
22
23
#include "ui/widget/button.h"
 
24
#include <2geom/point.h>
23
25
 
24
26
namespace Inkscape {
25
27
namespace UI {
30
32
    GuidelinePropertiesDialog(SPGuide *guide, SPDesktop *desktop);
31
33
    virtual ~GuidelinePropertiesDialog();
32
34
 
33
 
    Glib::ustring     getName() const { return "LayerPropertiesDialog"; }
 
35
    Glib::ustring     getName() const { return "GuidelinePropertiesDialog"; }
34
36
 
35
37
    static void showDialog(SPGuide *guide, SPDesktop *desktop);
36
38
 
51
53
    SPDesktop *_desktop;
52
54
    SPGuide *_guide;
53
55
    Gtk::Table  _layout_table;
 
56
    Gtk::Label  _label_name;
54
57
    Gtk::Label  _label_descr;
55
 
    Gtk::Label  _label_move;
 
58
    Gtk::Label  _label_units;
 
59
    Gtk::Label  _label_X;
 
60
    Gtk::Label  _label_Y;
 
61
    Gtk::Label  _label_degrees;
56
62
    Inkscape::UI::Widget::CheckButton _relative_toggle;
57
 
    Gtk::Adjustment _adjustment;
58
 
    Gtk::SpinButton _spin_button;
 
63
    Gtk::Adjustment _adjustment_x;
 
64
    Gtk::SpinButton _spin_button_x;
 
65
    Gtk::Adjustment _adjustment_y;
 
66
    Gtk::SpinButton _spin_button_y;
 
67
 
 
68
    Gtk::Adjustment _adj_angle;
 
69
    Gtk::SpinButton _spin_angle;
59
70
 
60
71
    Gtk::Widget *_unit_selector;
61
72
    bool _mode;
62
 
    gdouble _oldpos;
 
73
    Geom::Point _oldpos;
 
74
    gdouble _oldangle;
63
75
};
64
76
 
65
77
} // namespace