icon-preview.h revision 778d71cc875de3799c2fe5bf42867fc5e7900d8c
/** @file
* @brief A simple dialog for previewing icon representation.
*/
/* Authors:
* Jon A. Cruz
* Bob Jamison
* Other dudes from The Inkscape Organization
*
* Copyright (C) 2004,2005 The Inkscape Organization
* Copyright (C) 2010 Jon A. Cruz
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifndef SEEN_ICON_PREVIEW_H
#define SEEN_ICON_PREVIEW_H
#include <gtkmm/togglebutton.h>
#include <gtkmm/toggletoolbutton.h>
#include "desktop-tracker.h"
struct SPObject;
}
/**
* A panel that displays an icon preview
*/
{
//IconPreviewPanel(Glib::ustring const &label);
~IconPreviewPanel();
static IconPreviewPanel& getInstance();
void refreshPreview();
void modeToggled();
bool pending;
int hot;
int numEntries;
int* sizes;
void on_button_clicked(int which);
void updateMagnify();
void queueRefresh();
bool refreshCB();
};
} //namespace Dialogs
} //namespace UI
} //namespace Inkscape
#endif // SEEN_ICON_PREVIEW_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:encoding=utf-8:textwidth=99 :