kconfig: finer customization via popup menus
This allows to configure every symbol list and info window separately via a popup menu, these settings are also separately saved and restored. Cleanup the ConfigSettings class a bit to reduce the number of #ifdef. Signed-off-by: Roman Zippel <zippel@linux-m68k.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
committed by
Sam Ravnborg
parent
43bf612af2
commit
7fc925fd6a
@@ -36,6 +36,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
static QApplication *configApp;
|
static QApplication *configApp;
|
||||||
|
static ConfigSettings *configSettings;
|
||||||
|
|
||||||
static inline QString qgettext(const char* str)
|
static inline QString qgettext(const char* str)
|
||||||
{
|
{
|
||||||
@@ -47,23 +48,6 @@ static inline QString qgettext(const QString& str)
|
|||||||
return QString::fromLocal8Bit(gettext(str.latin1()));
|
return QString::fromLocal8Bit(gettext(str.latin1()));
|
||||||
}
|
}
|
||||||
|
|
||||||
ConfigSettings::ConfigSettings()
|
|
||||||
: showAll(false), showName(false), showRange(false), showData(false)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
#if QT_VERSION >= 300
|
|
||||||
/**
|
|
||||||
* Reads the list column settings from the application settings.
|
|
||||||
*/
|
|
||||||
void ConfigSettings::readListSettings()
|
|
||||||
{
|
|
||||||
showAll = readBoolEntry("/kconfig/qconf/showAll", false);
|
|
||||||
showName = readBoolEntry("/kconfig/qconf/showName", false);
|
|
||||||
showRange = readBoolEntry("/kconfig/qconf/showRange", false);
|
|
||||||
showData = readBoolEntry("/kconfig/qconf/showData", false);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reads a list of integer values from the application settings.
|
* Reads a list of integer values from the application settings.
|
||||||
*/
|
*/
|
||||||
@@ -92,77 +76,8 @@ bool ConfigSettings::writeSizes(const QString& key, const QValueList<int>& value
|
|||||||
stringList.push_back(QString::number(*it));
|
stringList.push_back(QString::number(*it));
|
||||||
return writeEntry(key, stringList);
|
return writeEntry(key, stringList);
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* update all the children of a menu entry
|
|
||||||
* removes/adds the entries from the parent widget as necessary
|
|
||||||
*
|
|
||||||
* parent: either the menu list widget or a menu entry widget
|
|
||||||
* menu: entry to be updated
|
|
||||||
*/
|
|
||||||
template <class P>
|
|
||||||
void ConfigList::updateMenuList(P* parent, struct menu* menu)
|
|
||||||
{
|
|
||||||
struct menu* child;
|
|
||||||
ConfigItem* item;
|
|
||||||
ConfigItem* last;
|
|
||||||
bool visible;
|
|
||||||
enum prop_type type;
|
|
||||||
|
|
||||||
if (!menu) {
|
|
||||||
while ((item = parent->firstChild()))
|
|
||||||
delete item;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
last = parent->firstChild();
|
|
||||||
if (last && !last->goParent)
|
|
||||||
last = 0;
|
|
||||||
for (child = menu->list; child; child = child->next) {
|
|
||||||
item = last ? last->nextSibling() : parent->firstChild();
|
|
||||||
type = child->prompt ? child->prompt->type : P_UNKNOWN;
|
|
||||||
|
|
||||||
switch (mode) {
|
|
||||||
case menuMode:
|
|
||||||
if (!(child->flags & MENU_ROOT))
|
|
||||||
goto hide;
|
|
||||||
break;
|
|
||||||
case symbolMode:
|
|
||||||
if (child->flags & MENU_ROOT)
|
|
||||||
goto hide;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
visible = menu_is_visible(child);
|
|
||||||
if (showAll || visible) {
|
|
||||||
if (!item || item->menu != child)
|
|
||||||
item = new ConfigItem(parent, last, child, visible);
|
|
||||||
else
|
|
||||||
item->testUpdateMenu(visible);
|
|
||||||
|
|
||||||
if (mode == fullMode || mode == menuMode || type != P_MENU)
|
|
||||||
updateMenuList(item, child);
|
|
||||||
else
|
|
||||||
updateMenuList(item, 0);
|
|
||||||
last = item;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
hide:
|
|
||||||
if (item && item->menu == child) {
|
|
||||||
last = parent->firstChild();
|
|
||||||
if (last == item)
|
|
||||||
last = 0;
|
|
||||||
else while (last->nextSibling() != item)
|
|
||||||
last = last->nextSibling();
|
|
||||||
delete item;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#if QT_VERSION >= 300
|
#if QT_VERSION >= 300
|
||||||
/*
|
/*
|
||||||
* set the new data
|
* set the new data
|
||||||
@@ -395,14 +310,14 @@ void ConfigLineEdit::keyPressEvent(QKeyEvent* e)
|
|||||||
hide();
|
hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
ConfigList::ConfigList(ConfigView* p, ConfigSettings* configSettings)
|
ConfigList::ConfigList(ConfigView* p, const char *name)
|
||||||
: Parent(p),
|
: Parent(p, name),
|
||||||
updateAll(false),
|
updateAll(false),
|
||||||
symbolYesPix(xpm_symbol_yes), symbolModPix(xpm_symbol_mod), symbolNoPix(xpm_symbol_no),
|
symbolYesPix(xpm_symbol_yes), symbolModPix(xpm_symbol_mod), symbolNoPix(xpm_symbol_no),
|
||||||
choiceYesPix(xpm_choice_yes), choiceNoPix(xpm_choice_no),
|
choiceYesPix(xpm_choice_yes), choiceNoPix(xpm_choice_no),
|
||||||
menuPix(xpm_menu), menuInvPix(xpm_menu_inv), menuBackPix(xpm_menuback), voidPix(xpm_void),
|
menuPix(xpm_menu), menuInvPix(xpm_menu_inv), menuBackPix(xpm_menuback), voidPix(xpm_void),
|
||||||
showAll(false), showName(false), showRange(false), showData(false),
|
showAll(false), showName(false), showRange(false), showData(false),
|
||||||
rootEntry(0)
|
rootEntry(0), headerPopup(0)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@@ -416,11 +331,14 @@ ConfigList::ConfigList(ConfigView* p, ConfigSettings* configSettings)
|
|||||||
connect(this, SIGNAL(selectionChanged(void)),
|
connect(this, SIGNAL(selectionChanged(void)),
|
||||||
SLOT(updateSelection(void)));
|
SLOT(updateSelection(void)));
|
||||||
|
|
||||||
if (configSettings) {
|
if (name) {
|
||||||
showAll = configSettings->showAll;
|
configSettings->beginGroup(name);
|
||||||
showName = configSettings->showName;
|
showAll = configSettings->readBoolEntry("/showAll", false);
|
||||||
showRange = configSettings->showRange;
|
showName = configSettings->readBoolEntry("/showName", false);
|
||||||
showData = configSettings->showData;
|
showRange = configSettings->readBoolEntry("/showRange", false);
|
||||||
|
showData = configSettings->readBoolEntry("/showData", false);
|
||||||
|
configSettings->endGroup();
|
||||||
|
connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings()));
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < colNr; i++)
|
for (i = 0; i < colNr; i++)
|
||||||
@@ -451,6 +369,18 @@ void ConfigList::reinit(void)
|
|||||||
updateListAll();
|
updateListAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ConfigList::saveSettings(void)
|
||||||
|
{
|
||||||
|
if (name()) {
|
||||||
|
configSettings->beginGroup(name());
|
||||||
|
configSettings->writeEntry("/showName", showName);
|
||||||
|
configSettings->writeEntry("/showRange", showRange);
|
||||||
|
configSettings->writeEntry("/showData", showData);
|
||||||
|
configSettings->writeEntry("/showAll", showAll);
|
||||||
|
configSettings->endGroup();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void ConfigList::updateSelection(void)
|
void ConfigList::updateSelection(void)
|
||||||
{
|
{
|
||||||
struct menu *menu;
|
struct menu *menu;
|
||||||
@@ -512,14 +442,6 @@ update:
|
|||||||
triggerUpdate();
|
triggerUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ConfigList::setAllOpen(bool open)
|
|
||||||
{
|
|
||||||
QListViewItemIterator it(this);
|
|
||||||
|
|
||||||
for (; it.current(); it++)
|
|
||||||
it.current()->setOpen(open);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ConfigList::setValue(ConfigItem* item, tristate val)
|
void ConfigList::setValue(ConfigItem* item, tristate val)
|
||||||
{
|
{
|
||||||
struct symbol* sym;
|
struct symbol* sym;
|
||||||
@@ -624,6 +546,74 @@ void ConfigList::setParentMenu(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* update all the children of a menu entry
|
||||||
|
* removes/adds the entries from the parent widget as necessary
|
||||||
|
*
|
||||||
|
* parent: either the menu list widget or a menu entry widget
|
||||||
|
* menu: entry to be updated
|
||||||
|
*/
|
||||||
|
template <class P>
|
||||||
|
void ConfigList::updateMenuList(P* parent, struct menu* menu)
|
||||||
|
{
|
||||||
|
struct menu* child;
|
||||||
|
ConfigItem* item;
|
||||||
|
ConfigItem* last;
|
||||||
|
bool visible;
|
||||||
|
enum prop_type type;
|
||||||
|
|
||||||
|
if (!menu) {
|
||||||
|
while ((item = parent->firstChild()))
|
||||||
|
delete item;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
last = parent->firstChild();
|
||||||
|
if (last && !last->goParent)
|
||||||
|
last = 0;
|
||||||
|
for (child = menu->list; child; child = child->next) {
|
||||||
|
item = last ? last->nextSibling() : parent->firstChild();
|
||||||
|
type = child->prompt ? child->prompt->type : P_UNKNOWN;
|
||||||
|
|
||||||
|
switch (mode) {
|
||||||
|
case menuMode:
|
||||||
|
if (!(child->flags & MENU_ROOT))
|
||||||
|
goto hide;
|
||||||
|
break;
|
||||||
|
case symbolMode:
|
||||||
|
if (child->flags & MENU_ROOT)
|
||||||
|
goto hide;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
visible = menu_is_visible(child);
|
||||||
|
if (showAll || visible) {
|
||||||
|
if (!item || item->menu != child)
|
||||||
|
item = new ConfigItem(parent, last, child, visible);
|
||||||
|
else
|
||||||
|
item->testUpdateMenu(visible);
|
||||||
|
|
||||||
|
if (mode == fullMode || mode == menuMode || type != P_MENU)
|
||||||
|
updateMenuList(item, child);
|
||||||
|
else
|
||||||
|
updateMenuList(item, 0);
|
||||||
|
last = item;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
hide:
|
||||||
|
if (item && item->menu == child) {
|
||||||
|
last = parent->firstChild();
|
||||||
|
if (last == item)
|
||||||
|
last = 0;
|
||||||
|
else while (last->nextSibling() != item)
|
||||||
|
last = last->nextSibling();
|
||||||
|
delete item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void ConfigList::keyPressEvent(QKeyEvent* ev)
|
void ConfigList::keyPressEvent(QKeyEvent* ev)
|
||||||
{
|
{
|
||||||
QListViewItem* i = currentItem();
|
QListViewItem* i = currentItem();
|
||||||
@@ -786,12 +776,50 @@ void ConfigList::focusInEvent(QFocusEvent *e)
|
|||||||
emit gotFocus();
|
emit gotFocus();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ConfigList::contextMenuEvent(QContextMenuEvent *e)
|
||||||
|
{
|
||||||
|
if (e->y() <= header()->geometry().bottom()) {
|
||||||
|
if (!headerPopup) {
|
||||||
|
QAction *action;
|
||||||
|
|
||||||
|
headerPopup = new QPopupMenu(this);
|
||||||
|
action = new QAction("Show Name", 0, this);
|
||||||
|
action->setToggleAction(TRUE);
|
||||||
|
connect(action, SIGNAL(toggled(bool)),
|
||||||
|
parent(), SLOT(setShowName(bool)));
|
||||||
|
connect(parent(), SIGNAL(showNameChanged(bool)),
|
||||||
|
action, SLOT(setOn(bool)));
|
||||||
|
action->setOn(showName);
|
||||||
|
action->addTo(headerPopup);
|
||||||
|
action = new QAction("Show Range", 0, this);
|
||||||
|
action->setToggleAction(TRUE);
|
||||||
|
connect(action, SIGNAL(toggled(bool)),
|
||||||
|
parent(), SLOT(setShowRange(bool)));
|
||||||
|
connect(parent(), SIGNAL(showRangeChanged(bool)),
|
||||||
|
action, SLOT(setOn(bool)));
|
||||||
|
action->setOn(showRange);
|
||||||
|
action->addTo(headerPopup);
|
||||||
|
action = new QAction("Show Data", 0, this);
|
||||||
|
action->setToggleAction(TRUE);
|
||||||
|
connect(action, SIGNAL(toggled(bool)),
|
||||||
|
parent(), SLOT(setShowData(bool)));
|
||||||
|
connect(parent(), SIGNAL(showDataChanged(bool)),
|
||||||
|
action, SLOT(setOn(bool)));
|
||||||
|
action->setOn(showData);
|
||||||
|
action->addTo(headerPopup);
|
||||||
|
}
|
||||||
|
headerPopup->exec(e->globalPos());
|
||||||
|
e->accept();
|
||||||
|
} else
|
||||||
|
e->ignore();
|
||||||
|
}
|
||||||
|
|
||||||
ConfigView* ConfigView::viewList;
|
ConfigView* ConfigView::viewList;
|
||||||
|
|
||||||
ConfigView::ConfigView(QWidget* parent, ConfigSettings *configSettings)
|
ConfigView::ConfigView(QWidget* parent, const char *name)
|
||||||
: Parent(parent)
|
: Parent(parent, name)
|
||||||
{
|
{
|
||||||
list = new ConfigList(this, configSettings);
|
list = new ConfigList(this, name);
|
||||||
lineEdit = new ConfigLineEdit(this);
|
lineEdit = new ConfigLineEdit(this);
|
||||||
lineEdit->hide();
|
lineEdit->hide();
|
||||||
|
|
||||||
@@ -811,6 +839,50 @@ ConfigView::~ConfigView(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ConfigView::setShowAll(bool b)
|
||||||
|
{
|
||||||
|
if (list->showAll != b) {
|
||||||
|
list->showAll = b;
|
||||||
|
list->updateListAll();
|
||||||
|
emit showAllChanged(b);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ConfigView::setShowName(bool b)
|
||||||
|
{
|
||||||
|
if (list->showName != b) {
|
||||||
|
list->showName = b;
|
||||||
|
list->reinit();
|
||||||
|
emit showNameChanged(b);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ConfigView::setShowRange(bool b)
|
||||||
|
{
|
||||||
|
if (list->showRange != b) {
|
||||||
|
list->showRange = b;
|
||||||
|
list->reinit();
|
||||||
|
emit showRangeChanged(b);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ConfigView::setShowData(bool b)
|
||||||
|
{
|
||||||
|
if (list->showData != b) {
|
||||||
|
list->showData = b;
|
||||||
|
list->reinit();
|
||||||
|
emit showDataChanged(b);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ConfigList::setAllOpen(bool open)
|
||||||
|
{
|
||||||
|
QListViewItemIterator it(this);
|
||||||
|
|
||||||
|
for (; it.current(); it++)
|
||||||
|
it.current()->setOpen(open);
|
||||||
|
}
|
||||||
|
|
||||||
void ConfigView::updateList(ConfigItem* item)
|
void ConfigView::updateList(ConfigItem* item)
|
||||||
{
|
{
|
||||||
ConfigView* v;
|
ConfigView* v;
|
||||||
@@ -830,6 +902,21 @@ void ConfigView::updateListAll(void)
|
|||||||
ConfigInfoView::ConfigInfoView(QWidget* parent, const char *name)
|
ConfigInfoView::ConfigInfoView(QWidget* parent, const char *name)
|
||||||
: Parent(parent, name), menu(0)
|
: Parent(parent, name), menu(0)
|
||||||
{
|
{
|
||||||
|
if (name) {
|
||||||
|
configSettings->beginGroup(name);
|
||||||
|
_showDebug = configSettings->readBoolEntry("/showDebug", false);
|
||||||
|
configSettings->endGroup();
|
||||||
|
connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ConfigInfoView::saveSettings(void)
|
||||||
|
{
|
||||||
|
if (name()) {
|
||||||
|
configSettings->beginGroup(name());
|
||||||
|
configSettings->writeEntry("/showDebug", showDebug());
|
||||||
|
configSettings->endGroup();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ConfigInfoView::setShowDebug(bool b)
|
void ConfigInfoView::setShowDebug(bool b)
|
||||||
@@ -1006,8 +1093,26 @@ void ConfigInfoView::expr_print_help(void *data, const char *str)
|
|||||||
reinterpret_cast<QString*>(data)->append(print_filter(str));
|
reinterpret_cast<QString*>(data)->append(print_filter(str));
|
||||||
}
|
}
|
||||||
|
|
||||||
ConfigSearchWindow::ConfigSearchWindow(QWidget* parent)
|
QPopupMenu* ConfigInfoView::createPopupMenu(const QPoint& pos)
|
||||||
: Parent(parent), result(NULL)
|
{
|
||||||
|
QPopupMenu* popup = Parent::createPopupMenu(pos);
|
||||||
|
QAction* action = new QAction("Show Debug Info", 0, popup);
|
||||||
|
action->setToggleAction(TRUE);
|
||||||
|
connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool)));
|
||||||
|
connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setOn(bool)));
|
||||||
|
action->setOn(showDebug());
|
||||||
|
popup->insertSeparator();
|
||||||
|
action->addTo(popup);
|
||||||
|
return popup;
|
||||||
|
}
|
||||||
|
|
||||||
|
void ConfigInfoView::contentsContextMenuEvent(QContextMenuEvent *e)
|
||||||
|
{
|
||||||
|
Parent::contentsContextMenuEvent(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
ConfigSearchWindow::ConfigSearchWindow(QWidget* parent, const char *name)
|
||||||
|
: Parent(parent, name), result(NULL)
|
||||||
{
|
{
|
||||||
setCaption("Search Config");
|
setCaption("Search Config");
|
||||||
|
|
||||||
@@ -1023,14 +1128,47 @@ ConfigSearchWindow::ConfigSearchWindow(QWidget* parent)
|
|||||||
layout2->addWidget(searchButton);
|
layout2->addWidget(searchButton);
|
||||||
layout1->addLayout(layout2);
|
layout1->addLayout(layout2);
|
||||||
|
|
||||||
QSplitter* split = new QSplitter(this);
|
split = new QSplitter(this);
|
||||||
split->setOrientation(QSplitter::Vertical);
|
split->setOrientation(QSplitter::Vertical);
|
||||||
list = new ConfigView(split, NULL);
|
list = new ConfigView(split, name);
|
||||||
list->list->mode = listMode;
|
list->list->mode = listMode;
|
||||||
info = new ConfigInfoView(split);
|
info = new ConfigInfoView(split, name);
|
||||||
connect(list->list, SIGNAL(menuChanged(struct menu *)),
|
connect(list->list, SIGNAL(menuChanged(struct menu *)),
|
||||||
info, SLOT(setInfo(struct menu *)));
|
info, SLOT(setInfo(struct menu *)));
|
||||||
layout1->addWidget(split);
|
layout1->addWidget(split);
|
||||||
|
|
||||||
|
if (name) {
|
||||||
|
int x, y, width, height;
|
||||||
|
bool ok;
|
||||||
|
|
||||||
|
configSettings->beginGroup(name);
|
||||||
|
width = configSettings->readNumEntry("/window width", parent->width() / 2);
|
||||||
|
height = configSettings->readNumEntry("/window height", parent->height() / 2);
|
||||||
|
resize(width, height);
|
||||||
|
x = configSettings->readNumEntry("/window x", 0, &ok);
|
||||||
|
if (ok)
|
||||||
|
y = configSettings->readNumEntry("/window y", 0, &ok);
|
||||||
|
if (ok)
|
||||||
|
move(x, y);
|
||||||
|
QValueList<int> sizes = configSettings->readSizes("/split", &ok);
|
||||||
|
if (ok)
|
||||||
|
split->setSizes(sizes);
|
||||||
|
configSettings->endGroup();
|
||||||
|
connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ConfigSearchWindow::saveSettings(void)
|
||||||
|
{
|
||||||
|
if (name()) {
|
||||||
|
configSettings->beginGroup(name());
|
||||||
|
configSettings->writeEntry("/window x", pos().x());
|
||||||
|
configSettings->writeEntry("/window y", pos().y());
|
||||||
|
configSettings->writeEntry("/window width", size().width());
|
||||||
|
configSettings->writeEntry("/window height", size().height());
|
||||||
|
configSettings->writeSizes("/split", split->sizes());
|
||||||
|
configSettings->endGroup();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ConfigSearchWindow::search(void)
|
void ConfigSearchWindow::search(void)
|
||||||
@@ -1058,49 +1196,36 @@ void ConfigSearchWindow::search(void)
|
|||||||
ConfigMainWindow::ConfigMainWindow(void)
|
ConfigMainWindow::ConfigMainWindow(void)
|
||||||
{
|
{
|
||||||
QMenuBar* menu;
|
QMenuBar* menu;
|
||||||
bool ok, showDebug;
|
bool ok;
|
||||||
int x, y, width, height;
|
int x, y, width, height;
|
||||||
|
|
||||||
QWidget *d = configApp->desktop();
|
QWidget *d = configApp->desktop();
|
||||||
|
|
||||||
ConfigSettings* configSettings = new ConfigSettings();
|
width = configSettings->readNumEntry("/window width", d->width() - 64);
|
||||||
#if QT_VERSION >= 300
|
height = configSettings->readNumEntry("/window height", d->height() - 64);
|
||||||
width = configSettings->readNumEntry("/kconfig/qconf/window width", d->width() - 64);
|
|
||||||
height = configSettings->readNumEntry("/kconfig/qconf/window height", d->height() - 64);
|
|
||||||
resize(width, height);
|
resize(width, height);
|
||||||
x = configSettings->readNumEntry("/kconfig/qconf/window x", 0, &ok);
|
x = configSettings->readNumEntry("/window x", 0, &ok);
|
||||||
if (ok)
|
if (ok)
|
||||||
y = configSettings->readNumEntry("/kconfig/qconf/window y", 0, &ok);
|
y = configSettings->readNumEntry("/window y", 0, &ok);
|
||||||
if (ok)
|
if (ok)
|
||||||
move(x, y);
|
move(x, y);
|
||||||
showDebug = configSettings->readBoolEntry("/kconfig/qconf/showDebug", false);
|
|
||||||
|
|
||||||
// read list settings into configSettings, will be used later for ConfigList setup
|
|
||||||
configSettings->readListSettings();
|
|
||||||
#else
|
|
||||||
width = d->width() - 64;
|
|
||||||
height = d->height() - 64;
|
|
||||||
resize(width, height);
|
|
||||||
showDebug = false;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
split1 = new QSplitter(this);
|
split1 = new QSplitter(this);
|
||||||
split1->setOrientation(QSplitter::Horizontal);
|
split1->setOrientation(QSplitter::Horizontal);
|
||||||
setCentralWidget(split1);
|
setCentralWidget(split1);
|
||||||
|
|
||||||
menuView = new ConfigView(split1, configSettings);
|
menuView = new ConfigView(split1, "menu");
|
||||||
menuList = menuView->list;
|
menuList = menuView->list;
|
||||||
|
|
||||||
split2 = new QSplitter(split1);
|
split2 = new QSplitter(split1);
|
||||||
split2->setOrientation(QSplitter::Vertical);
|
split2->setOrientation(QSplitter::Vertical);
|
||||||
|
|
||||||
// create config tree
|
// create config tree
|
||||||
configView = new ConfigView(split2, configSettings);
|
configView = new ConfigView(split2, "config");
|
||||||
configList = configView->list;
|
configList = configView->list;
|
||||||
|
|
||||||
helpText = new ConfigInfoView(split2);
|
helpText = new ConfigInfoView(split2, "help");
|
||||||
helpText->setTextFormat(Qt::RichText);
|
helpText->setTextFormat(Qt::RichText);
|
||||||
helpText->setShowDebug(showDebug);
|
|
||||||
|
|
||||||
setTabOrder(configList, helpText);
|
setTabOrder(configList, helpText);
|
||||||
configList->setFocus();
|
configList->setFocus();
|
||||||
@@ -1130,25 +1255,29 @@ ConfigMainWindow::ConfigMainWindow(void)
|
|||||||
|
|
||||||
QAction *showNameAction = new QAction(NULL, "Show Name", 0, this);
|
QAction *showNameAction = new QAction(NULL, "Show Name", 0, this);
|
||||||
showNameAction->setToggleAction(TRUE);
|
showNameAction->setToggleAction(TRUE);
|
||||||
showNameAction->setOn(configList->showName);
|
connect(showNameAction, SIGNAL(toggled(bool)), configView, SLOT(setShowName(bool)));
|
||||||
connect(showNameAction, SIGNAL(toggled(bool)), SLOT(setShowName(bool)));
|
connect(configView, SIGNAL(showNameChanged(bool)), showNameAction, SLOT(setOn(bool)));
|
||||||
|
showNameAction->setOn(configView->showName());
|
||||||
QAction *showRangeAction = new QAction(NULL, "Show Range", 0, this);
|
QAction *showRangeAction = new QAction(NULL, "Show Range", 0, this);
|
||||||
showRangeAction->setToggleAction(TRUE);
|
showRangeAction->setToggleAction(TRUE);
|
||||||
|
connect(showRangeAction, SIGNAL(toggled(bool)), configView, SLOT(setShowRange(bool)));
|
||||||
|
connect(configView, SIGNAL(showRangeChanged(bool)), showRangeAction, SLOT(setOn(bool)));
|
||||||
showRangeAction->setOn(configList->showRange);
|
showRangeAction->setOn(configList->showRange);
|
||||||
connect(showRangeAction, SIGNAL(toggled(bool)), SLOT(setShowRange(bool)));
|
|
||||||
QAction *showDataAction = new QAction(NULL, "Show Data", 0, this);
|
QAction *showDataAction = new QAction(NULL, "Show Data", 0, this);
|
||||||
showDataAction->setToggleAction(TRUE);
|
showDataAction->setToggleAction(TRUE);
|
||||||
|
connect(showDataAction, SIGNAL(toggled(bool)), configView, SLOT(setShowData(bool)));
|
||||||
|
connect(configView, SIGNAL(showDataChanged(bool)), showDataAction, SLOT(setOn(bool)));
|
||||||
showDataAction->setOn(configList->showData);
|
showDataAction->setOn(configList->showData);
|
||||||
connect(showDataAction, SIGNAL(toggled(bool)), SLOT(setShowData(bool)));
|
|
||||||
QAction *showAllAction = new QAction(NULL, "Show All Options", 0, this);
|
QAction *showAllAction = new QAction(NULL, "Show All Options", 0, this);
|
||||||
showAllAction->setToggleAction(TRUE);
|
showAllAction->setToggleAction(TRUE);
|
||||||
|
connect(showAllAction, SIGNAL(toggled(bool)), configView, SLOT(setShowAll(bool)));
|
||||||
|
connect(showAllAction, SIGNAL(toggled(bool)), menuView, SLOT(setShowAll(bool)));
|
||||||
showAllAction->setOn(configList->showAll);
|
showAllAction->setOn(configList->showAll);
|
||||||
connect(showAllAction, SIGNAL(toggled(bool)), SLOT(setShowAll(bool)));
|
|
||||||
QAction *showDebugAction = new QAction(NULL, "Show Debug Info", 0, this);
|
QAction *showDebugAction = new QAction(NULL, "Show Debug Info", 0, this);
|
||||||
showDebugAction->setToggleAction(TRUE);
|
showDebugAction->setToggleAction(TRUE);
|
||||||
showDebugAction->setOn(showDebug);
|
|
||||||
connect(showDebugAction, SIGNAL(toggled(bool)), helpText, SLOT(setShowDebug(bool)));
|
connect(showDebugAction, SIGNAL(toggled(bool)), helpText, SLOT(setShowDebug(bool)));
|
||||||
connect(helpText, SIGNAL(showDebugChanged(bool)), showDebugAction, SLOT(setOn(bool)));
|
connect(helpText, SIGNAL(showDebugChanged(bool)), showDebugAction, SLOT(setOn(bool)));
|
||||||
|
showDebugAction->setOn(helpText->showDebug());
|
||||||
|
|
||||||
QAction *showIntroAction = new QAction(NULL, "Introduction", 0, this);
|
QAction *showIntroAction = new QAction(NULL, "Introduction", 0, this);
|
||||||
connect(showIntroAction, SIGNAL(activated()), SLOT(showIntro()));
|
connect(showIntroAction, SIGNAL(activated()), SLOT(showIntro()));
|
||||||
@@ -1209,8 +1338,7 @@ ConfigMainWindow::ConfigMainWindow(void)
|
|||||||
connect(menuList, SIGNAL(gotFocus(void)),
|
connect(menuList, SIGNAL(gotFocus(void)),
|
||||||
SLOT(listFocusChanged(void)));
|
SLOT(listFocusChanged(void)));
|
||||||
|
|
||||||
#if QT_VERSION >= 300
|
QString listMode = configSettings->readEntry("/listMode", "symbol");
|
||||||
QString listMode = configSettings->readEntry("/kconfig/qconf/listMode", "symbol");
|
|
||||||
if (listMode == "single")
|
if (listMode == "single")
|
||||||
showSingleView();
|
showSingleView();
|
||||||
else if (listMode == "full")
|
else if (listMode == "full")
|
||||||
@@ -1219,17 +1347,13 @@ ConfigMainWindow::ConfigMainWindow(void)
|
|||||||
showSplitView();
|
showSplitView();
|
||||||
|
|
||||||
// UI setup done, restore splitter positions
|
// UI setup done, restore splitter positions
|
||||||
QValueList<int> sizes = configSettings->readSizes("/kconfig/qconf/split1", &ok);
|
QValueList<int> sizes = configSettings->readSizes("/split1", &ok);
|
||||||
if (ok)
|
if (ok)
|
||||||
split1->setSizes(sizes);
|
split1->setSizes(sizes);
|
||||||
|
|
||||||
sizes = configSettings->readSizes("/kconfig/qconf/split2", &ok);
|
sizes = configSettings->readSizes("/split2", &ok);
|
||||||
if (ok)
|
if (ok)
|
||||||
split2->setSizes(sizes);
|
split2->setSizes(sizes);
|
||||||
#else
|
|
||||||
showSplitView();
|
|
||||||
#endif
|
|
||||||
delete configSettings;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -1237,7 +1361,6 @@ ConfigMainWindow::ConfigMainWindow(void)
|
|||||||
*/
|
*/
|
||||||
void ConfigMainWindow::setHelp(QListViewItem* item)
|
void ConfigMainWindow::setHelp(QListViewItem* item)
|
||||||
{
|
{
|
||||||
struct symbol* sym;
|
|
||||||
struct menu* menu = 0;
|
struct menu* menu = 0;
|
||||||
|
|
||||||
if (item)
|
if (item)
|
||||||
@@ -1273,7 +1396,7 @@ void ConfigMainWindow::saveConfigAs(void)
|
|||||||
void ConfigMainWindow::searchConfig(void)
|
void ConfigMainWindow::searchConfig(void)
|
||||||
{
|
{
|
||||||
if (!searchWindow)
|
if (!searchWindow)
|
||||||
searchWindow = new ConfigSearchWindow(this);
|
searchWindow = new ConfigSearchWindow(this, "search");
|
||||||
searchWindow->show();
|
searchWindow->show();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1353,46 +1476,6 @@ void ConfigMainWindow::showFullView(void)
|
|||||||
configList->setFocus();
|
configList->setFocus();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ConfigMainWindow::setShowAll(bool b)
|
|
||||||
{
|
|
||||||
if (configList->showAll == b)
|
|
||||||
return;
|
|
||||||
configList->showAll = b;
|
|
||||||
configList->updateListAll();
|
|
||||||
menuList->showAll = b;
|
|
||||||
menuList->updateListAll();
|
|
||||||
}
|
|
||||||
|
|
||||||
void ConfigMainWindow::setShowName(bool b)
|
|
||||||
{
|
|
||||||
if (configList->showName == b)
|
|
||||||
return;
|
|
||||||
configList->showName = b;
|
|
||||||
configList->reinit();
|
|
||||||
menuList->showName = b;
|
|
||||||
menuList->reinit();
|
|
||||||
}
|
|
||||||
|
|
||||||
void ConfigMainWindow::setShowRange(bool b)
|
|
||||||
{
|
|
||||||
if (configList->showRange == b)
|
|
||||||
return;
|
|
||||||
configList->showRange = b;
|
|
||||||
configList->reinit();
|
|
||||||
menuList->showRange = b;
|
|
||||||
menuList->reinit();
|
|
||||||
}
|
|
||||||
|
|
||||||
void ConfigMainWindow::setShowData(bool b)
|
|
||||||
{
|
|
||||||
if (configList->showData == b)
|
|
||||||
return;
|
|
||||||
configList->showData = b;
|
|
||||||
configList->reinit();
|
|
||||||
menuList->showData = b;
|
|
||||||
menuList->reinit();
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ask for saving configuration before quitting
|
* ask for saving configuration before quitting
|
||||||
* TODO ask only when something changed
|
* TODO ask only when something changed
|
||||||
@@ -1447,17 +1530,10 @@ void ConfigMainWindow::showAbout(void)
|
|||||||
|
|
||||||
void ConfigMainWindow::saveSettings(void)
|
void ConfigMainWindow::saveSettings(void)
|
||||||
{
|
{
|
||||||
#if QT_VERSION >= 300
|
configSettings->writeEntry("/window x", pos().x());
|
||||||
ConfigSettings *configSettings = new ConfigSettings;
|
configSettings->writeEntry("/window y", pos().y());
|
||||||
configSettings->writeEntry("/kconfig/qconf/window x", pos().x());
|
configSettings->writeEntry("/window width", size().width());
|
||||||
configSettings->writeEntry("/kconfig/qconf/window y", pos().y());
|
configSettings->writeEntry("/window height", size().height());
|
||||||
configSettings->writeEntry("/kconfig/qconf/window width", size().width());
|
|
||||||
configSettings->writeEntry("/kconfig/qconf/window height", size().height());
|
|
||||||
configSettings->writeEntry("/kconfig/qconf/showName", configList->showName);
|
|
||||||
configSettings->writeEntry("/kconfig/qconf/showRange", configList->showRange);
|
|
||||||
configSettings->writeEntry("/kconfig/qconf/showData", configList->showData);
|
|
||||||
configSettings->writeEntry("/kconfig/qconf/showAll", configList->showAll);
|
|
||||||
configSettings->writeEntry("/kconfig/qconf/showDebug", helpText->showDebug());
|
|
||||||
|
|
||||||
QString entry;
|
QString entry;
|
||||||
switch(configList->mode) {
|
switch(configList->mode) {
|
||||||
@@ -1473,13 +1549,10 @@ void ConfigMainWindow::saveSettings(void)
|
|||||||
entry = "full";
|
entry = "full";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
configSettings->writeEntry("/kconfig/qconf/listMode", entry);
|
configSettings->writeEntry("/listMode", entry);
|
||||||
|
|
||||||
configSettings->writeSizes("/kconfig/qconf/split1", split1->sizes());
|
configSettings->writeSizes("/split1", split1->sizes());
|
||||||
configSettings->writeSizes("/kconfig/qconf/split2", split2->sizes());
|
configSettings->writeSizes("/split2", split2->sizes());
|
||||||
|
|
||||||
delete configSettings;
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void fixup_rootmenu(struct menu *menu)
|
void fixup_rootmenu(struct menu *menu)
|
||||||
@@ -1537,6 +1610,8 @@ int main(int ac, char** av)
|
|||||||
conf_read(NULL);
|
conf_read(NULL);
|
||||||
//zconfdump(stdout);
|
//zconfdump(stdout);
|
||||||
|
|
||||||
|
configSettings = new ConfigSettings();
|
||||||
|
configSettings->beginGroup("/kconfig/qconf");
|
||||||
v = new ConfigMainWindow();
|
v = new ConfigMainWindow();
|
||||||
|
|
||||||
//zconfdump(stdout);
|
//zconfdump(stdout);
|
||||||
@@ -1546,5 +1621,8 @@ int main(int ac, char** av)
|
|||||||
v->show();
|
v->show();
|
||||||
configApp->exec();
|
configApp->exec();
|
||||||
|
|
||||||
|
configSettings->endGroup();
|
||||||
|
delete configSettings;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@@ -7,9 +7,25 @@
|
|||||||
#if QT_VERSION >= 300
|
#if QT_VERSION >= 300
|
||||||
#include <qsettings.h>
|
#include <qsettings.h>
|
||||||
#else
|
#else
|
||||||
class QSettings { };
|
class QSettings {
|
||||||
|
public:
|
||||||
|
void beginGroup(const QString& group) { }
|
||||||
|
void endGroup(void) { }
|
||||||
|
bool readBoolEntry(const QString& key, bool def = FALSE, bool* ok = 0) const
|
||||||
|
{ if (ok) *ok = FALSE; return def; }
|
||||||
|
int readNumEntry(const QString& key, int def = 0, bool* ok = 0) const
|
||||||
|
{ if (ok) *ok = FALSE; return def; }
|
||||||
|
QString readEntry(const QString& key, const QString& def = QString::null, bool* ok = 0) const
|
||||||
|
{ if (ok) *ok = FALSE; return def; }
|
||||||
|
QStringList readListEntry(const QString& key, bool* ok = 0) const
|
||||||
|
{ if (ok) *ok = FALSE; return QStringList(); }
|
||||||
|
template <class t>
|
||||||
|
bool writeEntry(const QString& key, t value)
|
||||||
|
{ return TRUE; }
|
||||||
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
class ConfigView;
|
||||||
class ConfigList;
|
class ConfigList;
|
||||||
class ConfigItem;
|
class ConfigItem;
|
||||||
class ConfigLineEdit;
|
class ConfigLineEdit;
|
||||||
@@ -18,35 +34,8 @@ class ConfigMainWindow;
|
|||||||
|
|
||||||
class ConfigSettings : public QSettings {
|
class ConfigSettings : public QSettings {
|
||||||
public:
|
public:
|
||||||
ConfigSettings();
|
|
||||||
|
|
||||||
#if QT_VERSION >= 300
|
|
||||||
void readListSettings();
|
|
||||||
QValueList<int> readSizes(const QString& key, bool *ok);
|
QValueList<int> readSizes(const QString& key, bool *ok);
|
||||||
bool writeSizes(const QString& key, const QValueList<int>& value);
|
bool writeSizes(const QString& key, const QValueList<int>& value);
|
||||||
#endif
|
|
||||||
|
|
||||||
bool showAll;
|
|
||||||
bool showName;
|
|
||||||
bool showRange;
|
|
||||||
bool showData;
|
|
||||||
};
|
|
||||||
|
|
||||||
class ConfigView : public QVBox {
|
|
||||||
Q_OBJECT
|
|
||||||
typedef class QVBox Parent;
|
|
||||||
public:
|
|
||||||
ConfigView(QWidget* parent, ConfigSettings* configSettings);
|
|
||||||
~ConfigView(void);
|
|
||||||
static void updateList(ConfigItem* item);
|
|
||||||
static void updateListAll(void);
|
|
||||||
|
|
||||||
public:
|
|
||||||
ConfigList* list;
|
|
||||||
ConfigLineEdit* lineEdit;
|
|
||||||
|
|
||||||
static ConfigView* viewList;
|
|
||||||
ConfigView* nextView;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
enum colIdx {
|
enum colIdx {
|
||||||
@@ -60,7 +49,7 @@ class ConfigList : public QListView {
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
typedef class QListView Parent;
|
typedef class QListView Parent;
|
||||||
public:
|
public:
|
||||||
ConfigList(ConfigView* p, ConfigSettings *configSettings);
|
ConfigList(ConfigView* p, const char *name = 0);
|
||||||
void reinit(void);
|
void reinit(void);
|
||||||
ConfigView* parent(void) const
|
ConfigView* parent(void) const
|
||||||
{
|
{
|
||||||
@@ -74,6 +63,8 @@ protected:
|
|||||||
void contentsMouseMoveEvent(QMouseEvent *e);
|
void contentsMouseMoveEvent(QMouseEvent *e);
|
||||||
void contentsMouseDoubleClickEvent(QMouseEvent *e);
|
void contentsMouseDoubleClickEvent(QMouseEvent *e);
|
||||||
void focusInEvent(QFocusEvent *e);
|
void focusInEvent(QFocusEvent *e);
|
||||||
|
void contextMenuEvent(QContextMenuEvent *e);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void setRootMenu(struct menu *menu);
|
void setRootMenu(struct menu *menu);
|
||||||
|
|
||||||
@@ -81,6 +72,7 @@ public slots:
|
|||||||
void setValue(ConfigItem* item, tristate val);
|
void setValue(ConfigItem* item, tristate val);
|
||||||
void changeValue(ConfigItem* item);
|
void changeValue(ConfigItem* item);
|
||||||
void updateSelection(void);
|
void updateSelection(void);
|
||||||
|
void saveSettings(void);
|
||||||
signals:
|
signals:
|
||||||
void menuChanged(struct menu *menu);
|
void menuChanged(struct menu *menu);
|
||||||
void menuSelected(struct menu *menu);
|
void menuSelected(struct menu *menu);
|
||||||
@@ -136,6 +128,7 @@ public:
|
|||||||
struct menu *rootEntry;
|
struct menu *rootEntry;
|
||||||
QColorGroup disabledColorGroup;
|
QColorGroup disabledColorGroup;
|
||||||
QColorGroup inactivedColorGroup;
|
QColorGroup inactivedColorGroup;
|
||||||
|
QPopupMenu* headerPopup;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
int colMap[colNr];
|
int colMap[colNr];
|
||||||
@@ -219,6 +212,37 @@ public:
|
|||||||
ConfigItem *item;
|
ConfigItem *item;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class ConfigView : public QVBox {
|
||||||
|
Q_OBJECT
|
||||||
|
typedef class QVBox Parent;
|
||||||
|
public:
|
||||||
|
ConfigView(QWidget* parent, const char *name = 0);
|
||||||
|
~ConfigView(void);
|
||||||
|
static void updateList(ConfigItem* item);
|
||||||
|
static void updateListAll(void);
|
||||||
|
|
||||||
|
bool showAll(void) const { return list->showAll; }
|
||||||
|
bool showName(void) const { return list->showName; }
|
||||||
|
bool showRange(void) const { return list->showRange; }
|
||||||
|
bool showData(void) const { return list->showData; }
|
||||||
|
public slots:
|
||||||
|
void setShowAll(bool);
|
||||||
|
void setShowName(bool);
|
||||||
|
void setShowRange(bool);
|
||||||
|
void setShowData(bool);
|
||||||
|
signals:
|
||||||
|
void showAllChanged(bool);
|
||||||
|
void showNameChanged(bool);
|
||||||
|
void showRangeChanged(bool);
|
||||||
|
void showDataChanged(bool);
|
||||||
|
public:
|
||||||
|
ConfigList* list;
|
||||||
|
ConfigLineEdit* lineEdit;
|
||||||
|
|
||||||
|
static ConfigView* viewList;
|
||||||
|
ConfigView* nextView;
|
||||||
|
};
|
||||||
|
|
||||||
class ConfigInfoView : public QTextBrowser {
|
class ConfigInfoView : public QTextBrowser {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
typedef class QTextBrowser Parent;
|
typedef class QTextBrowser Parent;
|
||||||
@@ -228,6 +252,7 @@ public:
|
|||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void setInfo(struct menu *menu);
|
void setInfo(struct menu *menu);
|
||||||
|
void saveSettings(void);
|
||||||
void setSource(const QString& name);
|
void setSource(const QString& name);
|
||||||
void setShowDebug(bool);
|
void setShowDebug(bool);
|
||||||
|
|
||||||
@@ -239,6 +264,8 @@ protected:
|
|||||||
QString debug_info(struct symbol *sym);
|
QString debug_info(struct symbol *sym);
|
||||||
static QString print_filter(const QString &str);
|
static QString print_filter(const QString &str);
|
||||||
static void expr_print_help(void *data, const char *str);
|
static void expr_print_help(void *data, const char *str);
|
||||||
|
QPopupMenu* createPopupMenu(const QPoint& pos);
|
||||||
|
void contentsContextMenuEvent(QContextMenuEvent *e);
|
||||||
|
|
||||||
struct menu *menu;
|
struct menu *menu;
|
||||||
bool _showDebug;
|
bool _showDebug;
|
||||||
@@ -248,12 +275,16 @@ class ConfigSearchWindow : public QDialog {
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
typedef class QDialog Parent;
|
typedef class QDialog Parent;
|
||||||
public:
|
public:
|
||||||
ConfigSearchWindow(QWidget* parent);
|
ConfigSearchWindow(QWidget* parent, const char *name = 0);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
void saveSettings(void);
|
||||||
void search(void);
|
void search(void);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
QLineEdit* editField;
|
QLineEdit* editField;
|
||||||
QPushButton* searchButton;
|
QPushButton* searchButton;
|
||||||
|
QSplitter* split;
|
||||||
ConfigView* list;
|
ConfigView* list;
|
||||||
ConfigInfoView* info;
|
ConfigInfoView* info;
|
||||||
|
|
||||||
@@ -276,10 +307,6 @@ public slots:
|
|||||||
void showSingleView(void);
|
void showSingleView(void);
|
||||||
void showSplitView(void);
|
void showSplitView(void);
|
||||||
void showFullView(void);
|
void showFullView(void);
|
||||||
void setShowAll(bool);
|
|
||||||
void setShowRange(bool);
|
|
||||||
void setShowName(bool);
|
|
||||||
void setShowData(bool);
|
|
||||||
void showIntro(void);
|
void showIntro(void);
|
||||||
void showAbout(void);
|
void showAbout(void);
|
||||||
void saveSettings(void);
|
void saveSettings(void);
|
||||||
|
Reference in New Issue
Block a user