tile.cpp revision 848cff6f9f842c42b73745e89bc4295427dc6508
/*
* A simple dialog for creating grid type arrangements of selected objects
*
* 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 "tile.h"
#include "verbs.h"
#include "ui/dialog/grid-arrange-tab.h"
#include "ui/dialog/polar-arrange-tab.h"
namespace Inkscape {
namespace UI {
namespace Dialog {
_gridArrangeTab(new GridArrangeTab(this)),
_polarArrangeTab(new PolarArrangeTab(this))
{
_arrangeButton->set_use_underline(true);
}
void ArrangeDialog::_apply()
{
switch(_notebook.get_current_page())
{
case 0:
break;
case 1:
break;
}
}
} //namespace Dialog
} //namespace UI
} //namespace Inkscape
/*
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 :