summaryrefslogtreecommitdiffstats
path: root/ksysv/OldView.h
blob: e2e765c2d881819833d1941844789d94af5690ea (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
/***************************************************************************
    begin                : Sun Oct 3 1999
    copyright            : (C) 1999 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.                              *
 *                                                                         *
 ***************************************************************************/

#ifndef KSV_VIEW_H
#define KSV_VIEW_H

#include <tqsplitter.h>
#include <tqvaluelist.h>
#include <tqsize.h>

#include <ktrader.h>

class TQPopupMenu;
class TQFileInfo;
class TQLabel;
class TQListViewItem;
class TQTextEdit;
class TQFrame;
class TQVBox;
class TQPixmap;
class TQLayout;

class KScroller;
class KProcess;
class KListView;
class TQSplitter;
class KPopupMenu;
class KSVTrash;
class KSVDragList;
class KSVConfig;
class KSVData;
class KSVItem;
class KSVAction;
class KSVTopLevel;

class KSVContent : public QSplitter
{
  Q_OBJECT

public:
  KSVContent (KPopupMenu* openWithMenu, KSVTopLevel* parent = 0, const char* name = 0);
  ~KSVContent();

  KSVDragList* getOrigin();

  const TQString& log() const;
  const TQString& xmlLog() const;

  void setColors (const TQColor& newNormal,
                  const TQColor& newSelected,
                  const TQColor& changedNormal,
                  const TQColor& changedSelected);

  void mergeLoadedPackage (TQValueList<KSVData>* start,
                           TQValueList<KSVData>* stop);

public slots:
  void slotWriteSysV();

  void infoOnData(KSVItem* data);
  void setDisplayScriptOutput(bool val);
  void slotScriptProperties (TQListViewItem*);
  void multiplexEnabled (bool);

  void hideRunlevel (int index);
  void showRunlevel (int index);

protected:
  virtual void resizeEvent (TQResizeEvent* e);
  virtual void moveEvent (TQMoveEvent* e);
  virtual void showEvent (TQShowEvent*);

private slots:
  void calcMinSize ();
  void fwdOrigin (KSVDragList*);
  void startService();
  void startService (const TQString& path);
  void stopService();
  void stopService (const TQString& path);
  void restartService();
  void restartService (const TQString& path);
  void editService();
  void editService (const TQString& path);
  void slotOutputOrError( KProcess* _p, char* _buffer, int _buflen );
  void slotExitedProcess(KProcess* proc);
  void slotScriptsNotRemovable();
  void slotDoubleClick (TQListViewItem*);
  void slotExitDuringRestart(KProcess* proc);
  void appendLog(const TQString& rich, const TQString& plain);
  void appendLog(const TQCString& _buffer);
  void fwdCannotGenerateNumber();
  void fwdOrigin();
  void reSortRL();
  void pasteAppend();
  void fwdUndoAction(KSVAction*);
  void updatePanningFactor();

  void popupRunlevelMenu (KListView*, TQListViewItem*, const TQPoint&);
  void popupServicesMenu (KListView*, TQListViewItem*, const TQPoint&);

  void updateServicesAfterChange (const TQString&);
  void updateRunlevelsAfterChange ();

  void repaintRunlevels ();

  void openWith ();
  void openWith (int index);

signals:
  void sigUpdateParent();
  void sigRun (const TQString&);
  void sigStop();
  void sigNotRemovable();
  void cannotGenerateNumber();
  void selected (KSVItem*);
  void selectedScripts (KSVItem*);
  void sizeChanged();

  void undoAction (KSVAction*);
  void logChanged();

  void newOrigin();

private:
  static int splitterToPanningFactor (const TQValueList<int>&);
  static const TQValueList<int>& panningFactorToSplitter (int);

  void merge (TQValueList<KSVData>& list, KSVDragList* widget);
  void initLList();
  void initScripts();
  void initRunlevels();
  void info2Widget (TQFileInfo* info, int index);
  void writeToDisk (const KSVData& _w, int _rl, bool _start);
  void clearRL( int _rl );

  friend class KSVTopLevel;

  TQFrame* mContent;
  KScroller* mScroller;

  KSVDragList** startRL;
  KSVDragList** stopRL;
  KSVDragList* scripts;

  KPopupMenu* mItemMenu;
  KPopupMenu* mContextMenu;
  KPopupMenu* mScriptMenu;
  KSVTrash* trash;
  TQTextEdit* textDisplay;
  KSVConfig* conf;

  TQVBox* mScriptBox;
  TQVBox** mRunlevels;
  TQWidget* mBuffer;

  KSVDragList* mOrigin;

  TQString mLogText, mXMLLogText;

  TQSize mMinSize;

  KPopupMenu* mOpenWithMenu;
  KTrader::OfferList mOpenWithOffers;

  TQCString m_buffer;
};

#endif