00001 // -*- c++ -*- 00002 //------------------------------------------------------------------------------ 00003 // InfoMsgPopup.h 00004 //------------------------------------------------------------------------------ 00005 // $Id: InfoMsgPopup.h,v 1.4 2003/02/07 05:15:09 vlg Exp $ 00006 //------------------------------------------------------------------------------ 00007 // Copyright (c) 2002 by Vladislav Grinchenko 00008 // 00009 // This program is free software; you can redistribute it and/or 00010 // modify it under the terms of the GNU General Public License 00011 // as published by the Free Software Foundation; either version 00012 // 2 of the License, or (at your option) any later version. 00013 //------------------------------------------------------------------------------ 00014 // 07/07/2002 VLG Created 00015 //------------------------------------------------------------------------------ 00016 #ifndef INFO_MSG_POPUP_H 00017 #define INFO_MSG_POPUP_H 00018 00019 #include <string> 00020 using std::string; 00021 00022 #include <gtkmm/window.h> 00023 00024 class Gtk::Button; 00025 00026 class InfoMsgPopup : public Gtk::Window 00027 { 00028 public: 00029 InfoMsgPopup (const string& title_, const string& msg_); 00030 void set_text (const string& title_, const string& msg_); 00031 00032 private: 00033 Gtk::Button m_msg; 00034 }; 00035 00036 00037 #endif // INFO_MSG_POPUP_H