font-variants.h revision c569e825f7ace90f49190d896197a19729a8955e
/*
* Author:
* Tavmjong Bah <tavmjong@free.fr>
*
* Copyright (C) 2015 Tavmong Bah
*
* Released under GNU GPL. Read the file 'COPYING' for more information.
*/
// Temp: both frame and expander
#include <gtkmm/expander.h>
#include <gtkmm/checkbutton.h>
#include <gtkmm/radiobutton.h>
/**
* A container for selecting font variants (OpenType Features).
*/
{
/**
* Constructor
*/
FontVariants();
// To start, use four check buttons.
// Exclusive options
// Exclusive options (maybe a dropdown menu to save space?)
// Complicated!
void ligatures_init();
void ligatures_callback();
void position_init();
void position_callback();
void caps_init();
void caps_callback();
void numeric_init();
void numeric_callback();
};
} // namespace Widget
} // namespace UI
} // namespace Inkscape
#endif // INKSCAPE_UI_WIDGET_FONT_VARIANT_H
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :