panel.h revision 1e7c268648bcbae15fc13b8c94dee677b401d9b3
/**
* \brief Generic Panel widget - A generic dockable container.
*
* Authors:
* Bryce Harrington <bryce@bryceharrington.org>
* Jon A. Cruz <jon@joncruz.org>
*
* Copyright (C) 2004 Bryce Harrington
* Copyright (C) 2005 Jon A. Cruz
*
* Released under GNU GPL. Read the file 'COPYING' for more information.
*/
#ifndef SEEN_INKSCAPE_UI_WIDGET_PANEL_H
#define SEEN_INKSCAPE_UI_WIDGET_PANEL_H
#include <vector>
#include <gtkmm/buttonbox.h>
#include <gtkmm/eventbox.h>
#include <gtkmm/optionmenu.h>
#include <gtkmm/tooltips.h>
#include "inkscape.h"
#include "ui/previewfillable.h"
#include "selection.h"
bool menu_desired = false);
gchar const *getPrefsPath() const;
int const &getVerb() const;
void restorePanelPrefs();
/** Signal accessors */
/** Methods providing a Gtk::Dialog like interface for adding buttons that emit Gtk::RESPONSE
* signals on click. */
void setDefaultResponse(int response_id);
/** Helper methods */
/** Tooltips object for all descendants to use */
const gchar *_prefs_path;
bool _menu_desired;
/** Signals */
void _init();
void _bounceCall(int i, int j);
int _verb_num;
/** A map to store which widget that emits a certain response signal */
};
} // namespace Widget
} // namespace UI
} // namespace Inkscape
#endif // SEEN_INKSCAPE_UI_WIDGET_PANEL_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 :