~ubuntu-branches/ubuntu/trusty/kwlan/trusty

« back to all changes in this revision

Viewing changes to kwlan/keventhistorydlg.h~

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2007-08-24 01:02:39 UTC
  • mfrom: (1.1.5 upstream) (0.1.3 lenny)
  • Revision ID: james.westby@ubuntu.com-20070824010239-e2xmgrrehh3n092w
Tags: 0.6.3-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef KEVENTHISTORYDLG_H
 
2
#define KEVENTHISTORYDLG_H
 
3
/** Kwlan
 
4
 *
 
5
 *  This File is part of Kwlan, a network Manager for KDE.
 
6
 *  Kwlan is distributed under LGPL license.
 
7
 *
 
8
 *      @author Thomas Michel <tom.michel@arcor.de>
 
9
 */
 
10
 
 
11
#include "keventhistory.h"
 
12
 
 
13
 
 
14
class KEventHistoryDlg : public KEventHistory
 
15
{
 
16
  Q_OBJECT
 
17
 
 
18
public:
 
19
  KEventHistoryDlg(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
 
20
  ~KEventHistoryDlg();
 
21
  /*$PUBLIC_FUNCTIONS$*/
 
22
 
 
23
public slots:
 
24
  /*$PUBLIC_SLOTS$*/
 
25
  virtual void          addEvent( WpaMsg msg );
 
26
  virtual void          addEvents( WpaMsgList msgs );
 
27
 
 
28
protected:
 
29
  /*$PROTECTED_FUNCTIONS$*/
 
30
 
 
31
protected slots:
 
32
  /*$PROTECTED_SLOTS$*/
 
33
};
 
34
 
 
35
#endif
 
36
 
 
37