~ubuntu-branches/ubuntu/jaunty/fqterm/jaunty

« back to all changes in this revision

Viewing changes to src/ui/articledialog.h

  • Committer: Bazaar Package Importer
  • Author(s): LI Daobing
  • Date: 2009-02-14 09:32:53 UTC
  • Revision ID: james.westby@ubuntu.com-20090214093253-s2e6544ox2aj79rj
Tags: upstream-0.9.3+svn632
ImportĀ upstreamĀ versionĀ 0.9.3+svn632

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   fqterm, a terminal emulator for both BBS and *nix.                    *
 
3
 *   Copyright (C) 2008 fqterm development group.                          *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.               *
 
19
 ***************************************************************************/
 
20
 
 
21
#ifndef FQTERM_ARTICLEDIALOG_H
 
22
#define FQTERM_ARTICLEDIALOG_H
 
23
 
 
24
#include "ui_articledialog.h"
 
25
 
 
26
namespace FQTerm {
 
27
 
 
28
class FQTermConfig;
 
29
class FQTermFileDialog;
 
30
 
 
31
class articleDialog: public QDialog {
 
32
  Q_OBJECT; 
 
33
public:
 
34
  articleDialog(FQTermConfig *, QWidget *parent_ = 0, Qt::WFlags fl = 0);
 
35
  ~articleDialog();
 
36
 
 
37
  QString articleText_;
 
38
  Ui::articleDialog ui_;
 
39
protected:
 
40
  void connectSlots();
 
41
protected slots:
 
42
  void onClose();
 
43
  void onSave();
 
44
  void onSelect();
 
45
  void onCopy();
 
46
private:
 
47
  FQTermConfig * config_;
 
48
};
 
49
 
 
50
} // name space FQTerm
 
51
 
 
52
#endif  // FQTERM_ARTICLEDIALOG_H