~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to parts/tipofday/tipofday_part.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  Copyright (C) 2001 Matthias H�zer-Klpfel <mhk@caldera.de>   
3
 
 */
4
 
 
5
 
 
6
 
#ifndef __KDEVPART_TIPOFDAY_H__
7
 
#define __KDEVPART_TIPOFDAY_H__
8
 
 
9
 
 
10
 
#include <kdevplugin.h>
11
 
 
12
 
 
13
 
class TipOfDayPart : public KDevPlugin
14
 
{
15
 
  Q_OBJECT
16
 
 
17
 
public:
18
 
   
19
 
  TipOfDayPart(QObject *parent, const char *name, const QStringList &);
20
 
 
21
 
 
22
 
public slots:
23
 
 
24
 
  void showTip();
25
 
  void showOnStart();
26
 
 
27
 
private:
28
 
  QString getFilename();
29
 
 
30
 
};
31
 
 
32
 
 
33
 
#endif