summaryrefslogtreecommitdiffabout
path: root/microkde/kapplication.h
blob: 497ec2f501304446913e22e18a75d7e8d111aef4 (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
28
29
30
#ifndef MINIKDE_KAPPLICATION_H
#define MINIKDE_KAPPLICATION_H

#include "qstring.h"
#include <qdialog.h>
#ifdef QDialog 
#undef  QDialog 
#endif

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