summaryrefslogtreecommitdiffstats
path: root/ksysv/ksv_core.cpp
blob: caf0dfef313bd2576445e3dc860e61c6b3523c8e (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/***************************************************************************
    begin                : Sun Oct 3 1999
    copyright            : (C) 1997-99 by Peter Putzer
    email                : putzer@kde.org
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; version 2.                              *
 *                                                                         *
 ***************************************************************************/

#include <tqpushbutton.h>
#include <tqstylesheet.h>

#include <tdeapplication.h>
#include <tdeglobalsettings.h>
#include <kcompletion.h>
#include <tdelocale.h>
#include <tdeglobal.h>

#include "ksv_conf.h"
#include "ksvdraglist.h"
#include "ksv_service.h"
#include "ksv_core.h"

const int ksv::runlevelNumber = 7;
TDEAboutData* ksv::about = 0L;

bool ksv::getServiceDescription (const TQString& path, TQString& res)
{
  KSVService* tmp = KSVService::newService (path, KSVConfig::self()->runlevelPath());
  res = i18n ("No description available.");
  bool result = false;

  if (tmp)
    {
      res = tmp->description();
      result = true;
    }

  delete tmp;

  return result;
}

TQString ksv::breakWords (const TQString& s, int amount)
{
  TQString res;

  int left = s.length();
  int maximum = amount;
  TQString str = s;

  while (left > maximum)
    {
      int pos = -1;
      for (int i = 1; i < amount; ++i)
        {
          if ((pos = str.find(' ', amount - i, false)) < 0 || (pos > maximum + i))
            continue;
          else
            break;
        }
      
      if (pos == -1) break;  //handles case when no spaces
      
      maximum = kMax (maximum, pos);
      res += str.left(pos) + "\n";
      left += -pos - 1;
      str = str.right(left);
    }
  
  res += str;
  
  return res;
}

const TQString& ksv::copyrightSymbol ()
{
  static TQString c = TQString::fromUtf8 ("©");

  return c;
}

TQStyleSheet* ksv::styleSheet ()
{
  static TQStyleSheet style;
  static bool initialized = false;

  if (!initialized)
	{
	  TQStyleSheetItem* item = new TQStyleSheetItem (&style, "vip"); // very important
	  item->setLogicalFontSize (5);
	  item->setFontWeight (TQFont::Bold);
      item->setDisplayMode (TQStyleSheetItem::DisplayBlock);

	  item = new TQStyleSheetItem (&style, "rl"); // runlevel
	  item->setLogicalFontSize (4);
	  item->setFontWeight (TQFont::Bold);
//       item->setDisplayMode (TQStyleSheetItem::DisplayBlock);

	  item = new TQStyleSheetItem (&style, "start"); // start section
	  item->setColor (TQt::green);
//       item->setContexts ("rl");

	  item = new TQStyleSheetItem (&style, "stop"); // stop section
	  item->setColor (TQt::red);
//       item->setContexts ("rl");

	  item = new TQStyleSheetItem (&style, "error"); // signal an error
	  item->setColor (TQt::red);
	  item->setLogicalFontSizeStep (1);

	  item = new TQStyleSheetItem (&style, "cmd"); // command line
	  item->setFontFamily (TDEGlobalSettings::fixedFont().family());
	}

  return &style;
}

TDECompletion* ksv::serviceCompletion ()
{
  static TDECompletion comp;  

  return &comp;
}

TDECompletion* ksv::numberCompletion ()
{
  static TDECompletion comp;
  static bool initialized = false;
  
  if (!initialized)
    {
      for (int value = 0; value < 100; value += 10)
        {
          TQString result = TQString::number (value);

          if (value < 10)
            result.sprintf("%.2i", value);
          
          comp.addItem (result);
        }
    }

  return &comp;
}

const TQString& ksv::logFileFilter ()
{
  static TQString filter = "*" + ksv::logFileExtension() + "|" +
    TQString(kapp->caption() + i18n(" log files") + " (*" + ksv::logFileExtension() + ")");
  
  return filter;
}

const TQString& ksv::nativeFileFilter ()
{
  static TQString filter = "*" + ksv::nativeFileExtension() + "|"
    + i18n("Saved Init Configurations") + " (*" + ksv::nativeFileExtension() + ")";
  
  return filter;
}

const TQString& ksv::logFileExtension ()
{
  static TQString ext = ".ksysv_log";
  
  return ext;
}

const TQString& ksv::nativeFileExtension ()
{
  static TQString ext = ".ksysv";
  
  return ext;
}

const char* ksv::notifications[] =
{
  "Show Runlevels ReadOnly",
  "Show Could Not Generate Sorting Number"
};