summaryrefslogtreecommitdiffabout
path: root/microkde/kapplication.h
blob: 5ae5c007a640c0e5c71088e0e6324a67e66f43bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef MINIKDE_KAPPLICATION_H
#define MINIKDE_KAPPLICATION_H

#include "qstring.h"
#include <qdialog.h>

class KApplication
{
  public:
    static int random();

//US
  /**
   * Generates a random string.  It operates in the range [A-Za-z0-9]
   * @param length Generate a string of this length.
   * @return the random string
   */
  static QString randomString(int length);
  static int execDialog( QDialog* ); 
  static void showLicence(); 
  static void showFile(QString caption, QString file); 
};


#endif