You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.1 KiB
77 lines
2.1 KiB
/***************************************************************************
|
|
ksig.h - description
|
|
-------------------
|
|
begin : Tue Jul 9 23:14:22 EDT 2002
|
|
copyright : (C) 2002 by Scott Wheeler
|
|
email : wheeler@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; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef KSIG_H
|
|
#define KSIG_H
|
|
|
|
#include "siglistview.h"
|
|
|
|
#include <tdemainwindow.h>
|
|
|
|
class KTextEdit;
|
|
class TQSplitter;
|
|
|
|
class KSig : public TDEMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
KSig(TQWidget *parent = 0, const char *name = 0);
|
|
virtual ~KSig();
|
|
|
|
private:
|
|
enum StatusBarColumns { LineNumber, ColumnNumber };
|
|
|
|
void setupLayout();
|
|
void setupActions();
|
|
void setupSearchLine();
|
|
void loadData();
|
|
void readConfig();
|
|
void writeConfig();
|
|
|
|
virtual bool queryClose();
|
|
|
|
private slots:
|
|
void add();
|
|
void remove();
|
|
void save();
|
|
void quit();
|
|
void setDataChanged(bool value = true);
|
|
|
|
void editHeader();
|
|
void editFooter();
|
|
void setHeader(const TQString &text) { header = text; writeConfig(); }
|
|
void setFooter(const TQString &text) { footer = text; writeConfig(); }
|
|
|
|
void updateList();
|
|
void updateEdit();
|
|
void updateStatus(int line, int column);
|
|
|
|
private:
|
|
TQString header;
|
|
TQString footer;
|
|
|
|
TQSplitter *splitter;
|
|
SigListView *sigList;
|
|
KTextEdit *sigEdit;
|
|
bool updateListLock;
|
|
bool changed;
|
|
};
|
|
|
|
#endif
|