From b888c7edb54e483ec0e3c2e2ce0eafd73acdcc65 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 24 Jul 2013 15:57:00 -0500 Subject: Initial import from kshowmail 3.3.1 sources --- doc/html/alertdialog_8cpp-source.html | 61 +++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 doc/html/alertdialog_8cpp-source.html (limited to 'doc/html/alertdialog_8cpp-source.html') diff --git a/doc/html/alertdialog_8cpp-source.html b/doc/html/alertdialog_8cpp-source.html new file mode 100644 index 0000000..629bd9c --- /dev/null +++ b/doc/html/alertdialog_8cpp-source.html @@ -0,0 +1,61 @@ + + +kshowmail: kshowmail/alertdialog.cpp Source File + + + + +
+
+ +

alertdialog.cpp

00001 /***************************************************************************
+00002                           alertdialog.cpp  -  description
+00003                              -------------------
+00004     begin                : Sun Nov 4 2001
+00005     copyright            : (C) 2001 by Eggert Ehmke
+00006     email                : eggert.ehmke@berlin.de
+00007  ***************************************************************************/
+00008 
+00009 /***************************************************************************
+00010  *                                                                         *
+00011  *   This program is free software; you can redistribute it and/or modify  *
+00012  *   it under the terms of the GNU General Public License as published by  *
+00013  *   the Free Software Foundation; either version 2 of the License, or     *
+00014  *   (at your option) any later version.                                   *
+00015  *                                                                         *
+00016  ***************************************************************************/
+00017 
+00018 #include "alertdialog.h"
+00019 
+00020 AlertDialog::AlertDialog(QWidget *parent, const char *name ):
+00021        AlertDlg(parent,name,true)
+00022 {
+00023        // position the dialog at the upper left corner of the main window.
+00024        // if the main window is iconized, the last position on screen is used.
+00025        setGeometry (parent->x (), parent->y (), width (), height ());
+00026 
+00027        // now show the dialog
+00028        show ();
+00029 }
+00030 
+00031 AlertDialog::~AlertDialog()
+00032 {
+00033 }
+00034 
+00035 void AlertDialog::slotOk ()
+00036 {
+00037        emit signalOk ();
+00038 }
+00039 
+

Generated on Thu Jul 5 19:36:06 2007 for kshowmail by  + +doxygen 1.5.0
+ + -- cgit v1.2.1