messages.h revision 64cfc2a9a66d228be90d543ce066ad3b5acda701
/** @file
* @brief Messages dialog
*
* A very simple dialog for displaying Inkscape messages. Messages
* sent to g_log(), g_warning(), g_message(), ets, are routed here,
* in order to avoid messing with the startup console.
*/
/* Authors:
* Bob Jamison
* Other dudes from The Inkscape Organization
*
* Copyright (C) 2004, 2005 Authors
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifndef INKSCAPE_UI_DIALOG_MESSAGES_H
#define INKSCAPE_UI_DIALOG_MESSAGES_H
#include <gtkmm/textview.h>
#include <gtkmm/scrolledwindow.h>
Messages();
/**
* Clear all information from the dialog
*/
void clear();
/**
* Display a message
*/
/**
* Redirect g_log() messages to this widget
*/
void captureLogMessages();
/**
* Return g_log() messages to normal handling
*/
void releaseLogMessages();
void toggleCapture();
//Gtk::MenuBar menuBar;
//Gtk::Menu fileMenu;
//Handler ID's
};
} //namespace Dialog
} //namespace UI
} //namespace Inkscape
#endif // INKSCAPE_UI_DIALOG_MESSAGES_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:fileencoding=utf-8:textwidth=99 :