~ubuntu-branches/ubuntu/natty/inkscape/natty

« back to all changes in this revision

Viewing changes to src/ui/dialog/transformation.h

  • Committer: Bazaar Package Importer
  • Author(s): Alex Valavanis
  • Date: 2010-09-12 19:44:58 UTC
  • mfrom: (1.1.12 upstream) (45.1.3 maverick)
  • Revision ID: james.westby@ubuntu.com-20100912194458-4sjwmbl7dlsrk5dc
Tags: 0.48.0-1ubuntu1
* Merge with Debian unstable (LP: #628048, LP: #401567, LP: #456248, 
  LP: #463602, LP: #591986)
* debian/control: 
  - Ubuntu maintainers
  - Promote python-lxml, python-numpy, python-uniconvertor to Recommends.
  - Demote pstoedit to Suggests (universe package).
  - Suggests ttf-dejavu instead of ttf-bitstream-vera (LP: #513319)
* debian/rules:
  - Run intltool-update on build (Ubuntu-specific).
  - Add translation domain to .desktop files (Ubuntu-specific).
* debian/dirs:
  - Add usr/share/pixmaps.  Allow inkscape.xpm installation
* drop 50-poppler-API.dpatch (now upstream)
* drop 51-paste-in-unwritable-directory.dpatch (now upstream) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include "ui/widget/button.h"
27
27
 
28
28
 
29
 
using namespace Inkscape::UI::Widget;
30
 
 
31
29
 
32
30
 
33
31
namespace Inkscape {
105
103
 
106
104
    Gtk::Notebook     _notebook;
107
105
 
108
 
    NotebookPage      _page_move;
109
 
    NotebookPage      _page_scale;
110
 
    NotebookPage      _page_rotate;
111
 
    NotebookPage      _page_skew;
112
 
    NotebookPage      _page_transform;
113
 
 
114
 
    UnitMenu          _units_move;
115
 
    UnitMenu          _units_scale;
116
 
    UnitMenu          _units_rotate;
117
 
    UnitMenu          _units_skew;
118
 
 
119
 
    ScalarUnit        _scalar_move_horizontal;
120
 
    ScalarUnit        _scalar_move_vertical;
121
 
    ScalarUnit        _scalar_scale_horizontal;
122
 
    ScalarUnit        _scalar_scale_vertical;
123
 
    ScalarUnit        _scalar_rotate;
124
 
    ScalarUnit        _scalar_skew_horizontal;
125
 
    ScalarUnit        _scalar_skew_vertical;
126
 
 
127
 
    Scalar            _scalar_transform_a;
128
 
    Scalar            _scalar_transform_b;
129
 
    Scalar            _scalar_transform_c;
130
 
    Scalar            _scalar_transform_d;
131
 
    Scalar            _scalar_transform_e;
132
 
    Scalar            _scalar_transform_f;
133
 
 
134
 
    CheckButton  _check_move_relative;
135
 
    CheckButton  _check_scale_proportional;
136
 
    CheckButton  _check_apply_separately;
137
 
    CheckButton  _check_replace_matrix;
 
106
    UI::Widget::NotebookPage      _page_move;
 
107
    UI::Widget::NotebookPage      _page_scale;
 
108
    UI::Widget::NotebookPage      _page_rotate;
 
109
    UI::Widget::NotebookPage      _page_skew;
 
110
    UI::Widget::NotebookPage      _page_transform;
 
111
 
 
112
    UI::Widget::UnitMenu          _units_move;
 
113
    UI::Widget::UnitMenu          _units_scale;
 
114
    UI::Widget::UnitMenu          _units_rotate;
 
115
    UI::Widget::UnitMenu          _units_skew;
 
116
 
 
117
    UI::Widget::ScalarUnit        _scalar_move_horizontal;
 
118
    UI::Widget::ScalarUnit        _scalar_move_vertical;
 
119
    UI::Widget::ScalarUnit        _scalar_scale_horizontal;
 
120
    UI::Widget::ScalarUnit        _scalar_scale_vertical;
 
121
    UI::Widget::ScalarUnit        _scalar_rotate;
 
122
    UI::Widget::ScalarUnit        _scalar_skew_horizontal;
 
123
    UI::Widget::ScalarUnit        _scalar_skew_vertical;
 
124
 
 
125
    UI::Widget::Scalar            _scalar_transform_a;
 
126
    UI::Widget::Scalar            _scalar_transform_b;
 
127
    UI::Widget::Scalar            _scalar_transform_c;
 
128
    UI::Widget::Scalar            _scalar_transform_d;
 
129
    UI::Widget::Scalar            _scalar_transform_e;
 
130
    UI::Widget::Scalar            _scalar_transform_f;
 
131
 
 
132
    UI::Widget::CheckButton  _check_move_relative;
 
133
    UI::Widget::CheckButton  _check_scale_proportional;
 
134
    UI::Widget::CheckButton  _check_apply_separately;
 
135
    UI::Widget::CheckButton  _check_replace_matrix;
138
136
 
139
137
    /**
140
138
     * Layout the GUI components, and prepare for use