Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

InfoMsgPopup Class Reference

#include <InfoMsgPopup.h>

List of all members.

Public Methods

 InfoMsgPopup (const string &title_, const string &msg_)
void set_text (const string &title_, const string &msg_)

Private Attributes

Gtk::Button m_msg


Constructor & Destructor Documentation

InfoMsgPopup::InfoMsgPopup const string &    title_,
const string &    msg_
 

Definition at line 27 of file InfoMsgPopup.cpp.

References m_msg.

00028 {
00029     trace ("InfoMsgPopup::InfoMsgPopup");
00030 
00031     set_title (title_);
00032     m_msg.add_label (msg_);
00033     set_position (Gtk::WIN_POS_CENTER);
00034     add (m_msg);
00035     m_msg.show ();
00036 }


Member Function Documentation

void InfoMsgPopup::set_text const string &    title_,
const string &    msg_
 

Definition at line 41 of file InfoMsgPopup.cpp.

References m_msg.

00042 {
00043     trace ("InfoMsgPopup::set_text");
00044 
00045     set_title (title_.c_str ());
00046     m_msg.add_label (msg_);
00047 }


Member Data Documentation

Gtk::Button InfoMsgPopup::m_msg [private]
 

Definition at line 33 of file InfoMsgPopup.h.

Referenced by InfoMsgPopup, and set_text.


The documentation for this class was generated from the following files:
Generated on Tue Feb 11 23:05:32 2003 for gwavmerger by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002