glyphs.cpp revision 50875492099cda448c2aa399dfcaab4e608ea1e5
/**
* Glyph selector dialog.
*/
/* Authors:
* Jon A. Cruz
*
* Copyright (C) 2010 Jon A. Cruz
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <vector>
#include <gtkmm/iconview.h>
#include <gtkmm/liststore.h>
#include <gtkmm/scrolledwindow.h>
#include <gtkmm/treemodelcolumn.h>
#include <gtk/gtkbutton.h>
#include <gtk/gtkstock.h>
#include "glyphs.h"
#include "verbs.h"
#include "widgets/font-selector.h"
#include "libnrtype/font-instance.h"
namespace Inkscape {
namespace UI {
namespace Dialogs {
{
return *new GlyphsPanel();
}
{
public:
{
}
};
{
return columns;
}
/**
* Constructor
*/
iconView(0),
entry(0),
label(0)
{
// -------------------------------
row++;
// -------------------------------
//iconView->set_columns(16);
iconView->signal_selection_changed().connect(sigc::mem_fun(*this, &GlyphsPanel::glyphSelectionChanged));
row++;
// -------------------------------
row++;
// -------------------------------
}
{
}
{
int startPos = 0;
int endPos = 0;
// there was something selected.
}
}
void GlyphsPanel::glyphSelectionChanged()
{
} else {
}
}
{
if (self) {
}
}
{
if (font) {
if (glyphId > 0) {
}
}
{
}
}
}
} // namespace Dialogs
} // 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:encoding=utf-8:textwidth=99 :