summaryrefslogtreecommitdiffstats
path: root/tdecore/tests/kstddirstest.cpp
blob: 69e9a0200b2b6cb9832453898a64c744f5c5817a (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <kapplication.h>
#include <kdebug.h>
#include <kinstance.h>
#include <kstandarddirs.h>
#include <kconfig.h>

int main(int argc, char **argv)
{
  KApplication a(argc, argv, "whatever", false);
  KStandardDirs t;
  KConfig config; // to add custom entries - a bit tricky :/

  TQStringList list;
  TQString s;

  t.saveLocation("icon");

  s = t.findResource("icon", "xv.xpm");
  if (!s.isNull()) kdDebug() << s << endl;

  list = t.findAllResources("data", "kfind/toolbar", true);
  for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
    kdDebug() << "data " << (*it).ascii() << endl;
  }

  list = t.findAllResources("config", "kcmdisplayrc");
  for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
    kdDebug() << "config " << (*it).ascii() << endl;
  }

  list = t.findAllResources("config", "kcmdisplayrc", false, true);
  for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
    kdDebug() << "config2 " << (*it).ascii() << endl;
  }

  list = t.findAllResources("html", "en/*/index.html", false);
  for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
    kdDebug() << "docs " << (*it).ascii() << endl;
  }

  list = t.findAllResources("html", "*/*/*.html", false);
  for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
    kdDebug() << "docs " << (*it).ascii() << endl;
  }

  list = t.findDirs("data", "twin");
  for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
    kdDebug() << "twin dirs " << (*it).ascii() << endl;
  }

  kdDebug() << "hit " << t.findResourceDir("config", "kcmdisplayrc") << endl;
}