summaryrefslogtreecommitdiffabout
path: root/microkde/kapplication.h
blob: 41546a0bc5c2ac39b379cb345fc87a9d4d150fe6 (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
26
27
#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); 
  static void showText(QString caption, QString text); 
  static bool convert2latin1(QString file); 
};


#endif