gridarrangetab.h revision 1aaf60b309f004b6a423b29ac0400dfcdc84499f
/**
* @brief Arranges Objects into a Grid
*/
/* Authors:
* Bob Jamison ( based off trace dialog)
* John Cliff
* Other dudes from The Inkscape Organization
* Abhishek Sharma
* Declara Denis
*
* Copyright (C) 2004 Bob Jamison
* Copyright (C) 2004 John Cliff
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <gtkmm.h>
#include "ui/dialog/arrangetab.h"
#include "ui/widget/anchor-selector.h"
#include "ui/widget/scalar-unit.h"
#include "ui/widget/spinbutton.h"
/**
* Dialog for tiling an object
*/
virtual ~GridArrangeTab() {};
/**
* Do the actual work
*/
/**
* Respond to selection change
*/
void updateSelection();
// Callbacks from spinbuttons
void on_row_spinbutton_changed();
void on_col_spinbutton_changed();
void on_xpad_spinbutton_changed();
void on_ypad_spinbutton_changed();
void on_RowSize_checkbutton_changed();
void on_ColSize_checkbutton_changed();
void on_rowSize_spinbutton_changed();
void on_colSize_spinbutton_changed();
void Spacing_button_changed();
void Align_changed();
bool userHidden;
bool updating;
// Number selected label
// Number per Row
bool AutoRowSize;
// Number per Column
bool AutoColSize;
// Alignment
double VertAlign;
double HorizAlign;
// BBox or manual spacing
bool ManualSpacing;
// Row height
// Column width
};
} //namespace Dialog
} //namespace UI
} //namespace Inkscape
#endif /* INKSCAPE_UI_DIALOG_GRID_ARRANGE_TAB_H */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :