qconf.cc 42.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/*
 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
 * Released under the terms of the GNU GPL v2.0.
 */

A
Alexander Stein 已提交
6 7
#include <qglobal.h>

8
#include <QMainWindow>
9
#include <QList>
10
#include <qtextbrowser.h>
11
#include <QAction>
A
Alexander Stein 已提交
12
#include <q3header.h>
13
#include <QFileDialog>
14
#include <QMenu>
A
Alexander Stein 已提交
15 16

#include <qapplication.h>
17
#include <qdesktopwidget.h>
L
Linus Torvalds 已提交
18
#include <qtoolbar.h>
19
#include <qlayout.h>
L
Linus Torvalds 已提交
20 21
#include <qsplitter.h>
#include <qlineedit.h>
22 23
#include <qlabel.h>
#include <qpushbutton.h>
L
Linus Torvalds 已提交
24 25 26
#include <qmenubar.h>
#include <qmessagebox.h>
#include <qregexp.h>
A
Alexander Stein 已提交
27
#include <qevent.h>
L
Linus Torvalds 已提交
28 29 30 31 32 33 34 35 36

#include <stdlib.h>

#include "lkc.h"
#include "qconf.h"

#include "qconf.moc"
#include "images.c"

37 38 39 40 41
#ifdef _
# undef _
# define _ qgettext
#endif

L
Linus Torvalds 已提交
42
static QApplication *configApp;
43
static ConfigSettings *configSettings;
L
Linus Torvalds 已提交
44

45
QAction *ConfigMainWindow::saveAction;
46

47 48
static inline QString qgettext(const char* str)
{
49
	return QString::fromLocal8Bit(gettext(str));
50 51 52 53
}

static inline QString qgettext(const QString& str)
{
54
	return QString::fromLocal8Bit(gettext(str.latin1()));
55 56
}

57 58 59 60 61
ConfigSettings::ConfigSettings()
	: QSettings("kernel.org", "qconf")
{
}

L
Linus Torvalds 已提交
62 63 64
/**
 * Reads a list of integer values from the application settings.
 */
65
QList<int> ConfigSettings::readSizes(const QString& key, bool *ok)
L
Linus Torvalds 已提交
66
{
67
	QList<int> result;
L
Linus Torvalds 已提交
68
	QStringList entryList = readListEntry(key, ok);
L
Li Zefan 已提交
69 70 71 72
	QStringList::Iterator it;

	for (it = entryList.begin(); it != entryList.end(); ++it)
		result.push_back((*it).toInt());
L
Linus Torvalds 已提交
73 74 75 76 77 78 79

	return result;
}

/**
 * Writes a list of integer values to the application settings.
 */
80
bool ConfigSettings::writeSizes(const QString& key, const QList<int>& value)
L
Linus Torvalds 已提交
81 82
{
	QStringList stringList;
83
	QList<int>::ConstIterator it;
L
Linus Torvalds 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98

	for (it = value.begin(); it != value.end(); ++it)
		stringList.push_back(QString::number(*it));
	return writeEntry(key, stringList);
}


/*
 * set the new data
 * TODO check the value
 */
void ConfigItem::okRename(int col)
{
	Parent::okRename(col);
	sym_set_string_value(menu->sym, text(dataColIdx).latin1());
99
	listView()->updateList(this);
L
Linus Torvalds 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
}

/*
 * update the displayed of a menu entry
 */
void ConfigItem::updateMenu(void)
{
	ConfigList* list;
	struct symbol* sym;
	struct property *prop;
	QString prompt;
	int type;
	tristate expr;

	list = listView();
	if (goParent) {
		setPixmap(promptColIdx, list->menuBackPix);
		prompt = "..";
		goto set_prompt;
	}

	sym = menu->sym;
	prop = menu->prompt;
123
	prompt = _(menu_get_prompt(menu));
L
Linus Torvalds 已提交
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

	if (prop) switch (prop->type) {
	case P_MENU:
		if (list->mode == singleMode || list->mode == symbolMode) {
			/* a menuconfig entry is displayed differently
			 * depending whether it's at the view root or a child.
			 */
			if (sym && list->rootEntry == menu)
				break;
			setPixmap(promptColIdx, list->menuPix);
		} else {
			if (sym)
				break;
			setPixmap(promptColIdx, 0);
		}
		goto set_prompt;
	case P_COMMENT:
		setPixmap(promptColIdx, 0);
		goto set_prompt;
	default:
		;
	}
	if (!sym)
		goto set_prompt;

149
	setText(nameColIdx, QString::fromLocal8Bit(sym->name));
L
Linus Torvalds 已提交
150 151 152 153 154 155 156

	type = sym_get_type(sym);
	switch (type) {
	case S_BOOLEAN:
	case S_TRISTATE:
		char ch;

157
		if (!sym_is_changable(sym) && list->optMode == normalOpt) {
L
Linus Torvalds 已提交
158
			setPixmap(promptColIdx, 0);
159 160 161
			setText(noColIdx, QString::null);
			setText(modColIdx, QString::null);
			setText(yesColIdx, QString::null);
L
Linus Torvalds 已提交
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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
			break;
		}
		expr = sym_get_tristate_value(sym);
		switch (expr) {
		case yes:
			if (sym_is_choice_value(sym) && type == S_BOOLEAN)
				setPixmap(promptColIdx, list->choiceYesPix);
			else
				setPixmap(promptColIdx, list->symbolYesPix);
			setText(yesColIdx, "Y");
			ch = 'Y';
			break;
		case mod:
			setPixmap(promptColIdx, list->symbolModPix);
			setText(modColIdx, "M");
			ch = 'M';
			break;
		default:
			if (sym_is_choice_value(sym) && type == S_BOOLEAN)
				setPixmap(promptColIdx, list->choiceNoPix);
			else
				setPixmap(promptColIdx, list->symbolNoPix);
			setText(noColIdx, "N");
			ch = 'N';
			break;
		}
		if (expr != no)
			setText(noColIdx, sym_tristate_within_range(sym, no) ? "_" : 0);
		if (expr != mod)
			setText(modColIdx, sym_tristate_within_range(sym, mod) ? "_" : 0);
		if (expr != yes)
			setText(yesColIdx, sym_tristate_within_range(sym, yes) ? "_" : 0);

		setText(dataColIdx, QChar(ch));
		break;
	case S_INT:
	case S_HEX:
	case S_STRING:
		const char* data;

		data = sym_get_string_value(sym);
203

L
Linus Torvalds 已提交
204 205 206 207 208
		int i = list->mapIdx(dataColIdx);
		if (i >= 0)
			setRenameEnabled(i, TRUE);
		setText(dataColIdx, data);
		if (type == S_STRING)
209
			prompt = QString("%1: %2").arg(prompt).arg(data);
L
Linus Torvalds 已提交
210
		else
211
			prompt = QString("(%2) %1").arg(prompt).arg(data);
L
Linus Torvalds 已提交
212 213 214
		break;
	}
	if (!sym_has_value(sym) && visible)
215
		prompt += _(" (NEW)");
L
Linus Torvalds 已提交
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
set_prompt:
	setText(promptColIdx, prompt);
}

void ConfigItem::testUpdateMenu(bool v)
{
	ConfigItem* i;

	visible = v;
	if (!menu)
		return;

	sym_calc_value(menu->sym);
	if (menu->flags & MENU_CHANGED) {
		/* the menu entry changed, so update all list items */
		menu->flags &= ~MENU_CHANGED;
		for (i = (ConfigItem*)menu->data; i; i = i->nextItem)
			i->updateMenu();
	} else if (listView()->updateAll)
		updateMenu();
}

void ConfigItem::paintCell(QPainter* p, const QColorGroup& cg, int column, int width, int align)
{
	ConfigList* list = listView();

	if (visible) {
		if (isSelected() && !list->hasFocus() && list->mode == menuMode)
			Parent::paintCell(p, list->inactivedColorGroup, column, width, align);
		else
			Parent::paintCell(p, cg, column, width, align);
	} else
		Parent::paintCell(p, list->disabledColorGroup, column, width, align);
}

/*
 * construct a menu entry
 */
void ConfigItem::init(void)
{
	if (menu) {
		ConfigList* list = listView();
		nextItem = (ConfigItem*)menu->data;
		menu->data = this;

		if (list->mode != fullMode)
			setOpen(TRUE);
		sym_calc_value(menu->sym);
	}
	updateMenu();
}

/*
 * destruct a menu entry
 */
ConfigItem::~ConfigItem(void)
{
	if (menu) {
		ConfigItem** ip = (ConfigItem**)&menu->data;
		for (; *ip; ip = &(*ip)->nextItem) {
			if (*ip == this) {
				*ip = nextItem;
				break;
			}
		}
	}
}

284 285 286 287 288 289
ConfigLineEdit::ConfigLineEdit(ConfigView* parent)
	: Parent(parent)
{
	connect(this, SIGNAL(lostFocus()), SLOT(hide()));
}

L
Linus Torvalds 已提交
290 291 292 293
void ConfigLineEdit::show(ConfigItem* i)
{
	item = i;
	if (sym_get_string_value(item->menu->sym))
294
		setText(QString::fromLocal8Bit(sym_get_string_value(item->menu->sym)));
L
Linus Torvalds 已提交
295
	else
296
		setText(QString::null);
L
Linus Torvalds 已提交
297 298 299 300 301 302 303
	Parent::show();
	setFocus();
}

void ConfigLineEdit::keyPressEvent(QKeyEvent* e)
{
	switch (e->key()) {
304
	case Qt::Key_Escape:
L
Linus Torvalds 已提交
305
		break;
306 307
	case Qt::Key_Return:
	case Qt::Key_Enter:
L
Linus Torvalds 已提交
308 309 310 311 312 313 314 315 316 317 318 319
		sym_set_string_value(item->menu->sym, text().latin1());
		parent()->updateList(item);
		break;
	default:
		Parent::keyPressEvent(e);
		return;
	}
	e->accept();
	parent()->list->setFocus();
	hide();
}

320 321
ConfigList::ConfigList(ConfigView* p, const char *name)
	: Parent(p, name),
L
Linus Torvalds 已提交
322 323 324 325
	  updateAll(false),
	  symbolYesPix(xpm_symbol_yes), symbolModPix(xpm_symbol_mod), symbolNoPix(xpm_symbol_no),
	  choiceYesPix(xpm_choice_yes), choiceNoPix(xpm_choice_no),
	  menuPix(xpm_menu), menuInvPix(xpm_menu_inv), menuBackPix(xpm_menuback), voidPix(xpm_void),
326
	  showName(false), showRange(false), showData(false), optMode(normalOpt),
327
	  rootEntry(0), headerPopup(0)
L
Linus Torvalds 已提交
328 329 330 331 332 333 334 335 336 337 338 339 340
{
	int i;

	setSorting(-1);
	setRootIsDecorated(TRUE);
	disabledColorGroup = palette().active();
	disabledColorGroup.setColor(QColorGroup::Text, palette().disabled().text());
	inactivedColorGroup = palette().active();
	inactivedColorGroup.setColor(QColorGroup::Highlight, palette().disabled().highlight());

	connect(this, SIGNAL(selectionChanged(void)),
		SLOT(updateSelection(void)));

341 342 343 344 345
	if (name) {
		configSettings->beginGroup(name);
		showName = configSettings->readBoolEntry("/showName", false);
		showRange = configSettings->readBoolEntry("/showRange", false);
		showData = configSettings->readBoolEntry("/showData", false);
346
		optMode = (enum optionMode)configSettings->readNumEntry("/optionMode", false);
347 348
		configSettings->endGroup();
		connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings()));
L
Linus Torvalds 已提交
349 350 351 352
	}

	for (i = 0; i < colNr; i++)
		colMap[i] = colRevMap[i] = -1;
353
	addColumn(promptColIdx, _("Option"));
L
Linus Torvalds 已提交
354 355 356 357

	reinit();
}

358 359 360 361 362 363 364 365 366 367 368
bool ConfigList::menuSkip(struct menu *menu)
{
	if (optMode == normalOpt && menu_is_visible(menu))
		return false;
	if (optMode == promptOpt && menu_has_prompt(menu))
		return false;
	if (optMode == allOpt)
		return false;
	return true;
}

L
Linus Torvalds 已提交
369 370 371 372 373 374 375 376 377
void ConfigList::reinit(void)
{
	removeColumn(dataColIdx);
	removeColumn(yesColIdx);
	removeColumn(modColIdx);
	removeColumn(noColIdx);
	removeColumn(nameColIdx);

	if (showName)
378
		addColumn(nameColIdx, _("Name"));
L
Linus Torvalds 已提交
379 380 381 382 383 384
	if (showRange) {
		addColumn(noColIdx, "N");
		addColumn(modColIdx, "M");
		addColumn(yesColIdx, "Y");
	}
	if (showData)
385
		addColumn(dataColIdx, _("Value"));
L
Linus Torvalds 已提交
386 387 388 389

	updateListAll();
}

390 391 392 393 394 395 396
void ConfigList::saveSettings(void)
{
	if (name()) {
		configSettings->beginGroup(name());
		configSettings->writeEntry("/showName", showName);
		configSettings->writeEntry("/showRange", showRange);
		configSettings->writeEntry("/showData", showData);
397
		configSettings->writeEntry("/optionMode", (int)optMode);
398 399 400 401
		configSettings->endGroup();
	}
}

402 403 404 405 406 407 408 409 410 411 412 413
ConfigItem* ConfigList::findConfigItem(struct menu *menu)
{
	ConfigItem* item = (ConfigItem*)menu->data;

	for (; item; item = item->nextItem) {
		if (this == item->listView())
			break;
	}

	return item;
}

L
Linus Torvalds 已提交
414 415 416 417 418 419 420 421 422 423
void ConfigList::updateSelection(void)
{
	struct menu *menu;
	enum prop_type type;

	ConfigItem* item = (ConfigItem*)selectedItem();
	if (!item)
		return;

	menu = item->menu;
424
	emit menuChanged(menu);
L
Linus Torvalds 已提交
425 426 427 428 429 430 431 432 433 434 435
	if (!menu)
		return;
	type = menu->prompt ? menu->prompt->type : P_UNKNOWN;
	if (mode == menuMode && type == P_MENU)
		emit menuSelected(menu);
}

void ConfigList::updateList(ConfigItem* item)
{
	ConfigItem* last = 0;

436 437 438
	if (!rootEntry) {
		if (mode != listMode)
			goto update;
A
Alexander Stein 已提交
439
		Q3ListViewItemIterator it(this);
440 441 442 443 444 445 446 447 448 449
		ConfigItem* item;

		for (; it.current(); ++it) {
			item = (ConfigItem*)it.current();
			if (!item->menu)
				continue;
			item->testUpdateMenu(menu_is_visible(item->menu));
		}
		return;
	}
L
Linus Torvalds 已提交
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554

	if (rootEntry != &rootmenu && (mode == singleMode ||
	    (mode == symbolMode && rootEntry->parent != &rootmenu))) {
		item = firstChild();
		if (!item)
			item = new ConfigItem(this, 0, true);
		last = item;
	}
	if ((mode == singleMode || (mode == symbolMode && !(rootEntry->flags & MENU_ROOT))) &&
	    rootEntry->sym && rootEntry->prompt) {
		item = last ? last->nextSibling() : firstChild();
		if (!item)
			item = new ConfigItem(this, last, rootEntry, true);
		else
			item->testUpdateMenu(true);

		updateMenuList(item, rootEntry);
		triggerUpdate();
		return;
	}
update:
	updateMenuList(this, rootEntry);
	triggerUpdate();
}

void ConfigList::setValue(ConfigItem* item, tristate val)
{
	struct symbol* sym;
	int type;
	tristate oldval;

	sym = item->menu ? item->menu->sym : 0;
	if (!sym)
		return;

	type = sym_get_type(sym);
	switch (type) {
	case S_BOOLEAN:
	case S_TRISTATE:
		oldval = sym_get_tristate_value(sym);

		if (!sym_set_tristate_value(sym, val))
			return;
		if (oldval == no && item->menu->list)
			item->setOpen(TRUE);
		parent()->updateList(item);
		break;
	}
}

void ConfigList::changeValue(ConfigItem* item)
{
	struct symbol* sym;
	struct menu* menu;
	int type, oldexpr, newexpr;

	menu = item->menu;
	if (!menu)
		return;
	sym = menu->sym;
	if (!sym) {
		if (item->menu->list)
			item->setOpen(!item->isOpen());
		return;
	}

	type = sym_get_type(sym);
	switch (type) {
	case S_BOOLEAN:
	case S_TRISTATE:
		oldexpr = sym_get_tristate_value(sym);
		newexpr = sym_toggle_tristate_value(sym);
		if (item->menu->list) {
			if (oldexpr == newexpr)
				item->setOpen(!item->isOpen());
			else if (oldexpr == no)
				item->setOpen(TRUE);
		}
		if (oldexpr != newexpr)
			parent()->updateList(item);
		break;
	case S_INT:
	case S_HEX:
	case S_STRING:
		if (colMap[dataColIdx] >= 0)
			item->startRename(colMap[dataColIdx]);
		else
			parent()->lineEdit->show(item);
		break;
	}
}

void ConfigList::setRootMenu(struct menu *menu)
{
	enum prop_type type;

	if (rootEntry == menu)
		return;
	type = menu && menu->prompt ? menu->prompt->type : P_UNKNOWN;
	if (type != P_MENU)
		return;
	updateMenuList(this, 0);
	rootEntry = menu;
	updateListAll();
	setSelected(currentItem(), hasFocus());
555
	ensureItemVisible(currentItem());
L
Linus Torvalds 已提交
556 557 558 559 560 561 562 563 564 565 566 567
}

void ConfigList::setParentMenu(void)
{
	ConfigItem* item;
	struct menu *oldroot;

	oldroot = rootEntry;
	if (rootEntry == &rootmenu)
		return;
	setRootMenu(menu_get_parent_menu(rootEntry->parent));

A
Alexander Stein 已提交
568
	Q3ListViewItemIterator it(this);
L
Linus Torvalds 已提交
569 570 571 572 573 574 575 576 577
	for (; (item = (ConfigItem*)it.current()); it++) {
		if (item->menu == oldroot) {
			setCurrentItem(item);
			ensureItemVisible(item);
			break;
		}
	}
}

578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620
/*
 * 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);
621
		if (!menuSkip(child)) {
622 623
			if (!child->sym && !child->list && !child->prompt)
				continue;
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647
			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;
		}
	}
}

L
Linus Torvalds 已提交
648 649
void ConfigList::keyPressEvent(QKeyEvent* ev)
{
A
Alexander Stein 已提交
650
	Q3ListViewItem* i = currentItem();
L
Linus Torvalds 已提交
651 652 653 654
	ConfigItem* item;
	struct menu *menu;
	enum prop_type type;

655
	if (ev->key() == Qt::Key_Escape && mode != fullMode && mode != listMode) {
L
Linus Torvalds 已提交
656 657 658 659 660 661 662 663 664 665 666 667
		emit parentSelected();
		ev->accept();
		return;
	}

	if (!i) {
		Parent::keyPressEvent(ev);
		return;
	}
	item = (ConfigItem*)i;

	switch (ev->key()) {
668 669
	case Qt::Key_Return:
	case Qt::Key_Enter:
L
Linus Torvalds 已提交
670 671 672 673 674 675 676 677 678 679 680 681 682
		if (item->goParent) {
			emit parentSelected();
			break;
		}
		menu = item->menu;
		if (!menu)
			break;
		type = menu->prompt ? menu->prompt->type : P_UNKNOWN;
		if (type == P_MENU && rootEntry != menu &&
		    mode != fullMode && mode != menuMode) {
			emit menuSelected(menu);
			break;
		}
683
	case Qt::Key_Space:
L
Linus Torvalds 已提交
684 685
		changeValue(item);
		break;
686
	case Qt::Key_N:
L
Linus Torvalds 已提交
687 688
		setValue(item, no);
		break;
689
	case Qt::Key_M:
L
Linus Torvalds 已提交
690 691
		setValue(item, mod);
		break;
692
	case Qt::Key_Y:
L
Linus Torvalds 已提交
693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
		setValue(item, yes);
		break;
	default:
		Parent::keyPressEvent(ev);
		return;
	}
	ev->accept();
}

void ConfigList::contentsMousePressEvent(QMouseEvent* e)
{
	//QPoint p(contentsToViewport(e->pos()));
	//printf("contentsMousePressEvent: %d,%d\n", p.x(), p.y());
	Parent::contentsMousePressEvent(e);
}

void ConfigList::contentsMouseReleaseEvent(QMouseEvent* e)
{
	QPoint p(contentsToViewport(e->pos()));
	ConfigItem* item = (ConfigItem*)itemAt(p);
	struct menu *menu;
	enum prop_type ptype;
	const QPixmap* pm;
	int idx, x;

	if (!item)
		goto skip;

	menu = item->menu;
	x = header()->offset() + p.x();
	idx = colRevMap[header()->sectionAt(x)];
	switch (idx) {
	case promptColIdx:
		pm = item->pixmap(promptColIdx);
		if (pm) {
			int off = header()->sectionPos(0) + itemMargin() +
				treeStepSize() * (item->depth() + (rootIsDecorated() ? 1 : 0));
			if (x >= off && x < off + pm->width()) {
				if (item->goParent) {
					emit parentSelected();
					break;
				} else if (!menu)
					break;
				ptype = menu->prompt ? menu->prompt->type : P_UNKNOWN;
				if (ptype == P_MENU && rootEntry != menu &&
				    mode != fullMode && mode != menuMode)
					emit menuSelected(menu);
				else
					changeValue(item);
			}
		}
		break;
	case noColIdx:
		setValue(item, no);
		break;
	case modColIdx:
		setValue(item, mod);
		break;
	case yesColIdx:
		setValue(item, yes);
		break;
	case dataColIdx:
		changeValue(item);
		break;
	}

skip:
	//printf("contentsMouseReleaseEvent: %d,%d\n", p.x(), p.y());
	Parent::contentsMouseReleaseEvent(e);
}

void ConfigList::contentsMouseMoveEvent(QMouseEvent* e)
{
	//QPoint p(contentsToViewport(e->pos()));
	//printf("contentsMouseMoveEvent: %d,%d\n", p.x(), p.y());
	Parent::contentsMouseMoveEvent(e);
}

void ConfigList::contentsMouseDoubleClickEvent(QMouseEvent* e)
{
	QPoint p(contentsToViewport(e->pos()));
	ConfigItem* item = (ConfigItem*)itemAt(p);
	struct menu *menu;
	enum prop_type ptype;

	if (!item)
		goto skip;
	if (item->goParent) {
		emit parentSelected();
		goto skip;
	}
	menu = item->menu;
	if (!menu)
		goto skip;
	ptype = menu->prompt ? menu->prompt->type : P_UNKNOWN;
	if (ptype == P_MENU && (mode == singleMode || mode == symbolMode))
		emit menuSelected(menu);
	else if (menu->sym)
		changeValue(item);

skip:
	//printf("contentsMouseDoubleClickEvent: %d,%d\n", p.x(), p.y());
	Parent::contentsMouseDoubleClickEvent(e);
}

void ConfigList::focusInEvent(QFocusEvent *e)
{
800
	struct menu *menu = NULL;
L
Linus Torvalds 已提交
801

802
	Parent::focusInEvent(e);
L
Linus Torvalds 已提交
803

804 805 806 807 808 809
	ConfigItem* item = (ConfigItem *)currentItem();
	if (item) {
		setSelected(item, TRUE);
		menu = item->menu;
	}
	emit gotFocus(menu);
L
Linus Torvalds 已提交
810 811
}

812 813 814 815
void ConfigList::contextMenuEvent(QContextMenuEvent *e)
{
	if (e->y() <= header()->geometry().bottom()) {
		if (!headerPopup) {
816
			QAction *action;
817

818
			headerPopup = new QMenu(this);
819
			action = new QAction(_("Show Name"), this);
820
			  action->setCheckable(TRUE);
821 822 823 824
			  connect(action, SIGNAL(toggled(bool)),
				  parent(), SLOT(setShowName(bool)));
			  connect(parent(), SIGNAL(showNameChanged(bool)),
				  action, SLOT(setOn(bool)));
825
			  action->setChecked(showName);
826
			  action->addTo(headerPopup);
827
			action = new QAction(_("Show Range"), this);
828
			  action->setCheckable(TRUE);
829 830 831 832
			  connect(action, SIGNAL(toggled(bool)),
				  parent(), SLOT(setShowRange(bool)));
			  connect(parent(), SIGNAL(showRangeChanged(bool)),
				  action, SLOT(setOn(bool)));
833
			  action->setChecked(showRange);
834
			  action->addTo(headerPopup);
835
			action = new QAction( _("Show Data"), this);
836
			  action->setCheckable(TRUE);
837 838 839 840
			  connect(action, SIGNAL(toggled(bool)),
				  parent(), SLOT(setShowData(bool)));
			  connect(parent(), SIGNAL(showDataChanged(bool)),
				  action, SLOT(setOn(bool)));
841
			  action->setChecked(showData);
842 843 844 845 846 847 848 849
			  action->addTo(headerPopup);
		}
		headerPopup->exec(e->globalPos());
		e->accept();
	} else
		e->ignore();
}

850 851 852 853
ConfigView*ConfigView::viewList;
QAction *ConfigView::showNormalAction;
QAction *ConfigView::showAllAction;
QAction *ConfigView::showPromptAction;
L
Linus Torvalds 已提交
854

855 856
ConfigView::ConfigView(QWidget* parent, const char *name)
	: Parent(parent, name)
L
Linus Torvalds 已提交
857
{
858
	QVBoxLayout *verticalLayout = new QVBoxLayout(this);
859
	verticalLayout->setContentsMargins(0, 0, 0, 0);
860

861
	list = new ConfigList(this, name);
862
	verticalLayout->addWidget(list);
L
Linus Torvalds 已提交
863 864
	lineEdit = new ConfigLineEdit(this);
	lineEdit->hide();
865
	verticalLayout->addWidget(lineEdit);
L
Linus Torvalds 已提交
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882

	this->nextView = viewList;
	viewList = this;
}

ConfigView::~ConfigView(void)
{
	ConfigView** vp;

	for (vp = &viewList; *vp; vp = &(*vp)->nextView) {
		if (*vp == this) {
			*vp = nextView;
			break;
		}
	}
}

883
void ConfigView::setOptionMode(QAction *act)
884
{
885 886 887 888 889 890 891 892
	if (act == showNormalAction)
		list->optMode = normalOpt;
	else if (act == showAllAction)
		list->optMode = allOpt;
	else
		list->optMode = promptOpt;

	list->updateListAll();
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
}

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)
{
A
Alexander Stein 已提交
924
	Q3ListViewItemIterator it(this);
925 926 927 928 929

	for (; it.current(); it++)
		it.current()->setOpen(open);
}

L
Linus Torvalds 已提交
930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945
void ConfigView::updateList(ConfigItem* item)
{
	ConfigView* v;

	for (v = viewList; v; v = v->nextView)
		v->list->updateList(item);
}

void ConfigView::updateListAll(void)
{
	ConfigView* v;

	for (v = viewList; v; v = v->nextView)
		v->list->updateListAll();
}

946
ConfigInfoView::ConfigInfoView(QWidget* parent, const char *name)
A
Alexander Stein 已提交
947
	: Parent(parent, name), sym(0), _menu(0)
948
{
949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
	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();
	}
964 965 966 967 968 969
}

void ConfigInfoView::setShowDebug(bool b)
{
	if (_showDebug != b) {
		_showDebug = b;
A
Alexander Stein 已提交
970
		if (_menu)
971
			menuInfo();
972 973
		else if (sym)
			symbolInfo();
974 975 976 977 978 979
		emit showDebugChanged(b);
	}
}

void ConfigInfoView::setInfo(struct menu *m)
{
A
Alexander Stein 已提交
980
	if (_menu == m)
981
		return;
A
Alexander Stein 已提交
982
	_menu = m;
983
	sym = NULL;
A
Alexander Stein 已提交
984
	if (!_menu)
985
		clear();
986
	else
987 988 989
		menuInfo();
}

990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
void ConfigInfoView::symbolInfo(void)
{
	QString str;

	str += "<big>Symbol: <b>";
	str += print_filter(sym->name);
	str += "</b></big><br><br>value: ";
	str += print_filter(sym_get_string_value(sym));
	str += "<br>visibility: ";
	str += sym->visible == yes ? "y" : sym->visible == mod ? "m" : "n";
	str += "<br>";
	str += debug_info(sym);

	setText(str);
}

1006 1007 1008 1009 1010
void ConfigInfoView::menuInfo(void)
{
	struct symbol* sym;
	QString head, debug, help;

A
Alexander Stein 已提交
1011
	sym = _menu->sym;
1012
	if (sym) {
A
Alexander Stein 已提交
1013
		if (_menu->prompt) {
1014
			head += "<big><b>";
A
Alexander Stein 已提交
1015
			head += print_filter(_(_menu->prompt->text));
1016 1017 1018
			head += "</b></big>";
			if (sym->name) {
				head += " (";
1019 1020
				if (showDebug())
					head += QString().sprintf("<a href=\"s%p\">", sym);
1021
				head += print_filter(sym->name);
1022 1023
				if (showDebug())
					head += "</a>";
1024 1025 1026 1027
				head += ")";
			}
		} else if (sym->name) {
			head += "<big><b>";
1028 1029
			if (showDebug())
				head += QString().sprintf("<a href=\"s%p\">", sym);
1030
			head += print_filter(sym->name);
1031 1032
			if (showDebug())
				head += "</a>";
1033 1034 1035 1036 1037 1038 1039
			head += "</b></big>";
		}
		head += "<br><br>";

		if (showDebug())
			debug = debug_info(sym);

1040
		struct gstr help_gstr = str_new();
A
Alexander Stein 已提交
1041
		menu_get_ext_help(_menu, &help_gstr);
1042 1043
		help = print_filter(str_get(&help_gstr));
		str_free(&help_gstr);
A
Alexander Stein 已提交
1044
	} else if (_menu->prompt) {
1045
		head += "<big><b>";
A
Alexander Stein 已提交
1046
		head += print_filter(_(_menu->prompt->text));
1047 1048
		head += "</b></big><br><br>";
		if (showDebug()) {
A
Alexander Stein 已提交
1049
			if (_menu->prompt->visible.expr) {
1050
				debug += "&nbsp;&nbsp;dep: ";
A
Alexander Stein 已提交
1051
				expr_print(_menu->prompt->visible.expr, expr_print_help, &debug, E_NONE);
1052 1053 1054 1055 1056
				debug += "<br><br>";
			}
		}
	}
	if (showDebug())
A
Alexander Stein 已提交
1057
		debug += QString().sprintf("defined at %s:%d<br><br>", _menu->file->name, _menu->lineno);
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079

	setText(head + debug + help);
}

QString ConfigInfoView::debug_info(struct symbol *sym)
{
	QString debug;

	debug += "type: ";
	debug += print_filter(sym_type_name(sym->type));
	if (sym_is_choice(sym))
		debug += " (choice)";
	debug += "<br>";
	if (sym->rev_dep.expr) {
		debug += "reverse dep: ";
		expr_print(sym->rev_dep.expr, expr_print_help, &debug, E_NONE);
		debug += "<br>";
	}
	for (struct property *prop = sym->prop; prop; prop = prop->next) {
		switch (prop->type) {
		case P_PROMPT:
		case P_MENU:
1080
			debug += QString().sprintf("prompt: <a href=\"m%p\">", prop->menu);
1081
			debug += print_filter(_(prop->text));
1082
			debug += "</a><br>";
1083 1084
			break;
		case P_DEFAULT:
1085 1086 1087 1088 1089
		case P_SELECT:
		case P_RANGE:
		case P_ENV:
			debug += prop_get_type_name(prop->type);
			debug += ": ";
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
			expr_print(prop->expr, expr_print_help, &debug, E_NONE);
			debug += "<br>";
			break;
		case P_CHOICE:
			if (sym_is_choice(sym)) {
				debug += "choice: ";
				expr_print(prop->expr, expr_print_help, &debug, E_NONE);
				debug += "<br>";
			}
			break;
		default:
			debug += "unknown property: ";
			debug += prop_get_type_name(prop->type);
			debug += "<br>";
		}
		if (prop->visible.expr) {
			debug += "&nbsp;&nbsp;&nbsp;&nbsp;dep: ";
			expr_print(prop->visible.expr, expr_print_help, &debug, E_NONE);
			debug += "<br>";
		}
	}
	debug += "<br>";

	return debug;
}

QString ConfigInfoView::print_filter(const QString &str)
{
	QRegExp re("[<>&\"\\n]");
	QString res = str;
	for (int i = 0; (i = res.find(re, i)) >= 0;) {
		switch (res[i].latin1()) {
		case '<':
			res.replace(i, 1, "&lt;");
			i += 4;
			break;
		case '>':
			res.replace(i, 1, "&gt;");
			i += 4;
			break;
		case '&':
			res.replace(i, 1, "&amp;");
			i += 5;
			break;
		case '"':
			res.replace(i, 1, "&quot;");
			i += 6;
			break;
		case '\n':
			res.replace(i, 1, "<br>");
			i += 4;
			break;
		}
	}
	return res;
}

1147
void ConfigInfoView::expr_print_help(void *data, struct symbol *sym, const char *str)
1148
{
1149 1150 1151 1152 1153 1154 1155 1156 1157
	QString* text = reinterpret_cast<QString*>(data);
	QString str2 = print_filter(str);

	if (sym && sym->name && !(sym->flags & SYMBOL_CONST)) {
		*text += QString().sprintf("<a href=\"s%p\">", sym);
		*text += str2;
		*text += "</a>";
	} else
		*text += str2;
1158 1159
}

1160
QMenu* ConfigInfoView::createStandardContextMenu(const QPoint & pos)
1161
{
1162
	QMenu* popup = Parent::createStandardContextMenu(pos);
1163
	QAction* action = new QAction(_("Show Debug Info"), popup);
1164
	  action->setCheckable(TRUE);
1165 1166
	  connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool)));
	  connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setOn(bool)));
1167
	  action->setChecked(showDebug());
1168
	popup->addSeparator();
1169 1170 1171 1172
	action->addTo(popup);
	return popup;
}

1173
void ConfigInfoView::contextMenuEvent(QContextMenuEvent *e)
1174
{
1175
	Parent::contextMenuEvent(e);
1176 1177
}

1178
ConfigSearchWindow::ConfigSearchWindow(ConfigMainWindow* parent, const char *name)
1179
	: Parent(parent, name), result(NULL)
1180 1181 1182 1183 1184
{
	setCaption("Search Config");

	QVBoxLayout* layout1 = new QVBoxLayout(this, 11, 6);
	QHBoxLayout* layout2 = new QHBoxLayout(0, 0, 6);
1185
	layout2->addWidget(new QLabel(_("Find:"), this));
1186 1187 1188
	editField = new QLineEdit(this);
	connect(editField, SIGNAL(returnPressed()), SLOT(search()));
	layout2->addWidget(editField);
1189
	searchButton = new QPushButton(_("Search"), this);
1190 1191 1192 1193 1194
	searchButton->setAutoDefault(FALSE);
	connect(searchButton, SIGNAL(clicked()), SLOT(search()));
	layout2->addWidget(searchButton);
	layout1->addLayout(layout2);

1195
	split = new QSplitter(this);
1196
	split->setOrientation(Qt::Vertical);
1197
	list = new ConfigView(split, name);
1198
	list->list->mode = listMode;
1199
	info = new ConfigInfoView(split, name);
1200 1201
	connect(list->list, SIGNAL(menuChanged(struct menu *)),
		info, SLOT(setInfo(struct menu *)));
1202 1203 1204
	connect(list->list, SIGNAL(menuChanged(struct menu *)),
		parent, SLOT(setMenuLink(struct menu *)));

1205
	layout1->addWidget(split);
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219

	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);
1220
		QList<int> sizes = configSettings->readSizes("/split", &ok);
1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238
		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();
	}
1239 1240 1241 1242 1243 1244 1245 1246 1247 1248
}

void ConfigSearchWindow::search(void)
{
	struct symbol **p;
	struct property *prop;
	ConfigItem *lastItem = NULL;

	free(result);
	list->list->clear();
1249
	info->clear();
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260

	result = sym_re_search(editField->text().latin1());
	if (!result)
		return;
	for (p = result; *p; p++) {
		for_all_prompts((*p), prop)
			lastItem = new ConfigItem(list->list, lastItem, prop->menu,
						  menu_is_visible(prop->menu));
	}
}

L
Linus Torvalds 已提交
1261 1262 1263 1264
/*
 * Construct the complete config widget
 */
ConfigMainWindow::ConfigMainWindow(void)
1265
	: searchWindow(0)
L
Linus Torvalds 已提交
1266 1267
{
	QMenuBar* menu;
1268
	bool ok;
L
Linus Torvalds 已提交
1269
	int x, y, width, height;
R
Randy Dunlap 已提交
1270
	char title[256];
L
Linus Torvalds 已提交
1271

1272
	QDesktopWidget *d = configApp->desktop();
1273 1274
	snprintf(title, sizeof(title), "%s%s",
		rootmenu.prompt->text,
1275 1276
		""
		);
R
Randy Dunlap 已提交
1277
	setCaption(title);
L
Linus Torvalds 已提交
1278

1279 1280
	width = configSettings->readNumEntry("/window width", d->width() - 64);
	height = configSettings->readNumEntry("/window height", d->height() - 64);
L
Linus Torvalds 已提交
1281
	resize(width, height);
1282
	x = configSettings->readNumEntry("/window x", 0, &ok);
L
Linus Torvalds 已提交
1283
	if (ok)
1284
		y = configSettings->readNumEntry("/window y", 0, &ok);
L
Linus Torvalds 已提交
1285 1286 1287 1288
	if (ok)
		move(x, y);

	split1 = new QSplitter(this);
1289
	split1->setOrientation(Qt::Horizontal);
L
Linus Torvalds 已提交
1290 1291
	setCentralWidget(split1);

1292
	menuView = new ConfigView(split1, "menu");
L
Linus Torvalds 已提交
1293 1294 1295
	menuList = menuView->list;

	split2 = new QSplitter(split1);
1296
	split2->setOrientation(Qt::Vertical);
L
Linus Torvalds 已提交
1297 1298

	// create config tree
1299
	configView = new ConfigView(split2, "config");
L
Linus Torvalds 已提交
1300 1301
	configList = configView->list;

1302
	helpText = new ConfigInfoView(split2, "help");
L
Linus Torvalds 已提交
1303 1304 1305 1306 1307 1308
	helpText->setTextFormat(Qt::RichText);

	setTabOrder(configList, helpText);
	configList->setFocus();

	menu = menuBar();
1309
	toolBar = new QToolBar("Tools", this);
1310
	addToolBar(toolBar);
L
Linus Torvalds 已提交
1311

1312
	backAction = new QAction(QPixmap(xpm_back), _("Back"), this);
L
Linus Torvalds 已提交
1313 1314
	  connect(backAction, SIGNAL(activated()), SLOT(goBack()));
	  backAction->setEnabled(FALSE);
1315 1316
	QAction *quitAction = new QAction(_("&Quit"), this);
	quitAction->setShortcut(Qt::CTRL + Qt::Key_Q);
L
Linus Torvalds 已提交
1317
	  connect(quitAction, SIGNAL(activated()), SLOT(close()));
1318 1319
	QAction *loadAction = new QAction(QPixmap(xpm_load), _("&Load"), this);
	loadAction->setShortcut(Qt::CTRL + Qt::Key_L);
L
Linus Torvalds 已提交
1320
	  connect(loadAction, SIGNAL(activated()), SLOT(loadConfig()));
1321 1322
	saveAction = new QAction(QPixmap(xpm_save), _("&Save"), this);
	saveAction->setShortcut(Qt::CTRL + Qt::Key_S);
L
Linus Torvalds 已提交
1323
	  connect(saveAction, SIGNAL(activated()), SLOT(saveConfig()));
1324 1325 1326
	conf_set_changed_callback(conf_changed);
	// Set saveAction's initial state
	conf_changed();
1327
	QAction *saveAsAction = new QAction(_("Save &As..."), this);
L
Linus Torvalds 已提交
1328
	  connect(saveAsAction, SIGNAL(activated()), SLOT(saveConfigAs()));
1329 1330
	QAction *searchAction = new QAction(_("&Find"), this);
	searchAction->setShortcut(Qt::CTRL + Qt::Key_F);
1331
	  connect(searchAction, SIGNAL(activated()), SLOT(searchConfig()));
1332
	QAction *singleViewAction = new QAction(QPixmap(xpm_single_view), _("Single View"), this);
L
Linus Torvalds 已提交
1333
	  connect(singleViewAction, SIGNAL(activated()), SLOT(showSingleView()));
1334
	QAction *splitViewAction = new QAction(QPixmap(xpm_split_view), _("Split View"), this);
L
Linus Torvalds 已提交
1335
	  connect(splitViewAction, SIGNAL(activated()), SLOT(showSplitView()));
1336
	QAction *fullViewAction = new QAction(QPixmap(xpm_tree_view), _("Full View"), this);
L
Linus Torvalds 已提交
1337 1338
	  connect(fullViewAction, SIGNAL(activated()), SLOT(showFullView()));

1339
	QAction *showNameAction = new QAction(_("Show Name"), this);
1340
	  showNameAction->setCheckable(TRUE);
1341 1342
	  connect(showNameAction, SIGNAL(toggled(bool)), configView, SLOT(setShowName(bool)));
	  connect(configView, SIGNAL(showNameChanged(bool)), showNameAction, SLOT(setOn(bool)));
1343
	  showNameAction->setChecked(configView->showName());
1344
	QAction *showRangeAction = new QAction(_("Show Range"), this);
1345
	  showRangeAction->setCheckable(TRUE);
1346 1347
	  connect(showRangeAction, SIGNAL(toggled(bool)), configView, SLOT(setShowRange(bool)));
	  connect(configView, SIGNAL(showRangeChanged(bool)), showRangeAction, SLOT(setOn(bool)));
1348
	  showRangeAction->setChecked(configList->showRange);
1349
	QAction *showDataAction = new QAction(_("Show Data"), this);
1350
	  showDataAction->setCheckable(TRUE);
1351 1352
	  connect(showDataAction, SIGNAL(toggled(bool)), configView, SLOT(setShowData(bool)));
	  connect(configView, SIGNAL(showDataChanged(bool)), showDataAction, SLOT(setOn(bool)));
1353
	  showDataAction->setChecked(configList->showData);
1354 1355 1356 1357 1358 1359 1360 1361

	QActionGroup *optGroup = new QActionGroup(this);
	optGroup->setExclusive(TRUE);
	connect(optGroup, SIGNAL(selected(QAction *)), configView,
		SLOT(setOptionMode(QAction *)));
	connect(optGroup, SIGNAL(selected(QAction *)), menuView,
		SLOT(setOptionMode(QAction *)));

A
Alexander Stein 已提交
1362 1363 1364
	configView->showNormalAction = new QAction(_("Show Normal Options"), optGroup);
	configView->showAllAction = new QAction(_("Show All Options"), optGroup);
	configView->showPromptAction = new QAction(_("Show Prompt Options"), optGroup);
1365 1366 1367 1368 1369 1370
	configView->showNormalAction->setCheckable(TRUE);
	configView->showNormalAction->setChecked(configList->optMode == normalOpt);
	configView->showAllAction->setCheckable(TRUE);
	configView->showAllAction->setChecked(configList->optMode == allOpt);
	configView->showPromptAction->setCheckable(TRUE);
	configView->showPromptAction->setChecked(configList->optMode == promptOpt);
1371

1372
	QAction *showDebugAction = new QAction( _("Show Debug Info"), this);
1373
	  showDebugAction->setCheckable(TRUE);
1374 1375
	  connect(showDebugAction, SIGNAL(toggled(bool)), helpText, SLOT(setShowDebug(bool)));
	  connect(helpText, SIGNAL(showDebugChanged(bool)), showDebugAction, SLOT(setOn(bool)));
1376
	  showDebugAction->setChecked(helpText->showDebug());
L
Linus Torvalds 已提交
1377

1378
	QAction *showIntroAction = new QAction( _("Introduction"), this);
L
Linus Torvalds 已提交
1379
	  connect(showIntroAction, SIGNAL(activated()), SLOT(showIntro()));
1380
	QAction *showAboutAction = new QAction( _("About"), this);
L
Linus Torvalds 已提交
1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393
	  connect(showAboutAction, SIGNAL(activated()), SLOT(showAbout()));

	// init tool bar
	backAction->addTo(toolBar);
	toolBar->addSeparator();
	loadAction->addTo(toolBar);
	saveAction->addTo(toolBar);
	toolBar->addSeparator();
	singleViewAction->addTo(toolBar);
	splitViewAction->addTo(toolBar);
	fullViewAction->addTo(toolBar);

	// create config menu
1394
	QMenu* config = new QMenu(this);
1395
	menu->insertItem(_("&File"), config);
L
Linus Torvalds 已提交
1396 1397 1398
	loadAction->addTo(config);
	saveAction->addTo(config);
	saveAsAction->addTo(config);
1399
	config->addSeparator();
L
Linus Torvalds 已提交
1400 1401
	quitAction->addTo(config);

1402
	// create edit menu
1403
	QMenu* editMenu = new QMenu(this);
1404
	menu->insertItem(_("&Edit"), editMenu);
1405 1406
	searchAction->addTo(editMenu);

L
Linus Torvalds 已提交
1407
	// create options menu
1408
	QMenu* optionMenu = new QMenu(this);
1409
	menu->insertItem(_("&Option"), optionMenu);
L
Linus Torvalds 已提交
1410 1411 1412
	showNameAction->addTo(optionMenu);
	showRangeAction->addTo(optionMenu);
	showDataAction->addTo(optionMenu);
1413
	optionMenu->addSeparator();
1414
	optGroup->addTo(optionMenu);
1415
	optionMenu->addSeparator();
L
Linus Torvalds 已提交
1416 1417

	// create help menu
1418 1419
	QMenu* helpMenu = new QMenu(this);
	menu->addSeparator();
1420
	menu->insertItem(_("&Help"), helpMenu);
L
Linus Torvalds 已提交
1421 1422 1423
	showIntroAction->addTo(helpMenu);
	showAboutAction->addTo(helpMenu);

1424 1425
	connect(configList, SIGNAL(menuChanged(struct menu *)),
		helpText, SLOT(setInfo(struct menu *)));
L
Linus Torvalds 已提交
1426 1427 1428 1429
	connect(configList, SIGNAL(menuSelected(struct menu *)),
		SLOT(changeMenu(struct menu *)));
	connect(configList, SIGNAL(parentSelected()),
		SLOT(goBack()));
1430 1431
	connect(menuList, SIGNAL(menuChanged(struct menu *)),
		helpText, SLOT(setInfo(struct menu *)));
L
Linus Torvalds 已提交
1432 1433 1434
	connect(menuList, SIGNAL(menuSelected(struct menu *)),
		SLOT(changeMenu(struct menu *)));

1435 1436 1437 1438 1439
	connect(configList, SIGNAL(gotFocus(struct menu *)),
		helpText, SLOT(setInfo(struct menu *)));
	connect(menuList, SIGNAL(gotFocus(struct menu *)),
		helpText, SLOT(setInfo(struct menu *)));
	connect(menuList, SIGNAL(gotFocus(struct menu *)),
L
Linus Torvalds 已提交
1440
		SLOT(listFocusChanged(void)));
1441 1442
	connect(helpText, SIGNAL(menuSelected(struct menu *)),
		SLOT(setMenuLink(struct menu *)));
L
Linus Torvalds 已提交
1443

1444
	QString listMode = configSettings->readEntry("/listMode", "symbol");
L
Linus Torvalds 已提交
1445 1446 1447 1448 1449 1450 1451 1452
	if (listMode == "single")
		showSingleView();
	else if (listMode == "full")
		showFullView();
	else /*if (listMode == "split")*/
		showSplitView();

	// UI setup done, restore splitter positions
1453
	QList<int> sizes = configSettings->readSizes("/split1", &ok);
L
Linus Torvalds 已提交
1454 1455 1456
	if (ok)
		split1->setSizes(sizes);

1457
	sizes = configSettings->readSizes("/split2", &ok);
L
Linus Torvalds 已提交
1458 1459 1460 1461 1462 1463
	if (ok)
		split2->setSizes(sizes);
}

void ConfigMainWindow::loadConfig(void)
{
1464
	QString s = QFileDialog::getOpenFileName(conf_get_configname(), NULL, this);
L
Linus Torvalds 已提交
1465 1466
	if (s.isNull())
		return;
1467
	if (conf_read(QFile::encodeName(s)))
1468
		QMessageBox::information(this, "qconf", _("Unable to load configuration!"));
L
Linus Torvalds 已提交
1469 1470 1471
	ConfigView::updateListAll();
}

1472
bool ConfigMainWindow::saveConfig(void)
L
Linus Torvalds 已提交
1473
{
1474
	if (conf_write(NULL)) {
1475
		QMessageBox::information(this, "qconf", _("Unable to save configuration!"));
1476 1477 1478
		return false;
	}
	return true;
L
Linus Torvalds 已提交
1479 1480 1481 1482
}

void ConfigMainWindow::saveConfigAs(void)
{
1483
	QString s = QFileDialog::getSaveFileName(conf_get_configname(), NULL, this);
L
Linus Torvalds 已提交
1484 1485
	if (s.isNull())
		return;
1486
	saveConfig();
L
Linus Torvalds 已提交
1487 1488
}

1489 1490 1491
void ConfigMainWindow::searchConfig(void)
{
	if (!searchWindow)
1492
		searchWindow = new ConfigSearchWindow(this, "search");
1493 1494 1495
	searchWindow->show();
}

L
Linus Torvalds 已提交
1496 1497 1498
void ConfigMainWindow::changeMenu(struct menu *menu)
{
	configList->setRootMenu(menu);
1499 1500 1501 1502
	if (configList->rootEntry->parent == &rootmenu)
		backAction->setEnabled(FALSE);
	else
		backAction->setEnabled(TRUE);
L
Linus Torvalds 已提交
1503 1504
}

1505
void ConfigMainWindow::setMenuLink(struct menu *menu)
L
Linus Torvalds 已提交
1506
{
1507 1508 1509 1510
	struct menu *parent;
	ConfigList* list = NULL;
	ConfigItem* item;

1511
	if (configList->menuSkip(menu))
1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
		return;

	switch (configList->mode) {
	case singleMode:
		list = configList;
		parent = menu_get_parent_menu(menu);
		if (!parent)
			return;
		list->setRootMenu(parent);
		break;
	case symbolMode:
		if (menu->flags & MENU_ROOT) {
			configList->setRootMenu(menu);
L
Linus Torvalds 已提交
1525
			configList->clearSelection();
1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542
			list = menuList;
		} else {
			list = configList;
			parent = menu_get_parent_menu(menu->parent);
			if (!parent)
				return;
			item = menuList->findConfigItem(parent);
			if (item) {
				menuList->setSelected(item, TRUE);
				menuList->ensureItemVisible(item);
			}
			list->setRootMenu(parent);
		}
		break;
	case fullMode:
		list = configList;
		break;
1543 1544
	default:
		break;
1545 1546 1547 1548 1549 1550 1551 1552 1553
	}

	if (list) {
		item = list->findConfigItem(menu);
		if (item) {
			list->setSelected(item, TRUE);
			list->ensureItemVisible(item);
			list->setFocus();
		}
L
Linus Torvalds 已提交
1554 1555 1556
	}
}

1557 1558 1559 1560 1561 1562
void ConfigMainWindow::listFocusChanged(void)
{
	if (menuList->mode == menuMode)
		configList->clearSelection();
}

L
Linus Torvalds 已提交
1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627
void ConfigMainWindow::goBack(void)
{
	ConfigItem* item;

	configList->setParentMenu();
	if (configList->rootEntry == &rootmenu)
		backAction->setEnabled(FALSE);
	item = (ConfigItem*)menuList->selectedItem();
	while (item) {
		if (item->menu == configList->rootEntry) {
			menuList->setSelected(item, TRUE);
			break;
		}
		item = (ConfigItem*)item->parent();
	}
}

void ConfigMainWindow::showSingleView(void)
{
	menuView->hide();
	menuList->setRootMenu(0);
	configList->mode = singleMode;
	if (configList->rootEntry == &rootmenu)
		configList->updateListAll();
	else
		configList->setRootMenu(&rootmenu);
	configList->setAllOpen(TRUE);
	configList->setFocus();
}

void ConfigMainWindow::showSplitView(void)
{
	configList->mode = symbolMode;
	if (configList->rootEntry == &rootmenu)
		configList->updateListAll();
	else
		configList->setRootMenu(&rootmenu);
	configList->setAllOpen(TRUE);
	configApp->processEvents();
	menuList->mode = menuMode;
	menuList->setRootMenu(&rootmenu);
	menuList->setAllOpen(TRUE);
	menuView->show();
	menuList->setFocus();
}

void ConfigMainWindow::showFullView(void)
{
	menuView->hide();
	menuList->setRootMenu(0);
	configList->mode = fullMode;
	if (configList->rootEntry == &rootmenu)
		configList->updateListAll();
	else
		configList->setRootMenu(&rootmenu);
	configList->setAllOpen(FALSE);
	configList->setFocus();
}

/*
 * ask for saving configuration before quitting
 * TODO ask only when something changed
 */
void ConfigMainWindow::closeEvent(QCloseEvent* e)
{
1628
	if (!conf_get_changed()) {
L
Linus Torvalds 已提交
1629 1630 1631
		e->accept();
		return;
	}
1632
	QMessageBox mb("qconf", _("Save configuration?"), QMessageBox::Warning,
L
Linus Torvalds 已提交
1633
			QMessageBox::Yes | QMessageBox::Default, QMessageBox::No, QMessageBox::Cancel | QMessageBox::Escape);
1634 1635 1636
	mb.setButtonText(QMessageBox::Yes, _("&Save Changes"));
	mb.setButtonText(QMessageBox::No, _("&Discard Changes"));
	mb.setButtonText(QMessageBox::Cancel, _("Cancel Exit"));
L
Linus Torvalds 已提交
1637 1638
	switch (mb.exec()) {
	case QMessageBox::Yes:
1639 1640 1641 1642 1643
		if (saveConfig())
			e->accept();
		else
			e->ignore();
		break;
L
Linus Torvalds 已提交
1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654
	case QMessageBox::No:
		e->accept();
		break;
	case QMessageBox::Cancel:
		e->ignore();
		break;
	}
}

void ConfigMainWindow::showIntro(void)
{
1655
	static const QString str = _("Welcome to the qconf graphical configuration tool.\n\n"
L
Linus Torvalds 已提交
1656 1657 1658 1659 1660 1661 1662 1663 1664
		"For each option, a blank box indicates the feature is disabled, a check\n"
		"indicates it is enabled, and a dot indicates that it is to be compiled\n"
		"as a module.  Clicking on the box will cycle through the three states.\n\n"
		"If you do not see an option (e.g., a device driver) that you believe\n"
		"should be present, try turning on Show All Options under the Options menu.\n"
		"Although there is no cross reference yet to help you figure out what other\n"
		"options must be enabled to support the option you are interested in, you can\n"
		"still view the help of a grayed-out option.\n\n"
		"Toggling Show Debug Info under the Options menu will show the dependencies,\n"
1665
		"which you can then match by examining other options.\n\n");
L
Linus Torvalds 已提交
1666 1667 1668 1669 1670 1671

	QMessageBox::information(this, "qconf", str);
}

void ConfigMainWindow::showAbout(void)
{
1672 1673
	static const QString str = _("qconf is Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>.\n\n"
		"Bug reports and feature request can also be entered at http://bugzilla.kernel.org/\n");
L
Linus Torvalds 已提交
1674 1675 1676 1677 1678 1679

	QMessageBox::information(this, "qconf", str);
}

void ConfigMainWindow::saveSettings(void)
{
1680 1681 1682 1683
	configSettings->writeEntry("/window x", pos().x());
	configSettings->writeEntry("/window y", pos().y());
	configSettings->writeEntry("/window width", size().width());
	configSettings->writeEntry("/window height", size().height());
L
Linus Torvalds 已提交
1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697

	QString entry;
	switch(configList->mode) {
	case singleMode :
		entry = "single";
		break;

	case symbolMode :
		entry = "split";
		break;

	case fullMode :
		entry = "full";
		break;
1698 1699 1700

	default:
		break;
L
Linus Torvalds 已提交
1701
	}
1702
	configSettings->writeEntry("/listMode", entry);
L
Linus Torvalds 已提交
1703

1704 1705
	configSettings->writeSizes("/split1", split1->sizes());
	configSettings->writeSizes("/split2", split2->sizes());
L
Linus Torvalds 已提交
1706 1707
}

1708 1709 1710 1711 1712 1713
void ConfigMainWindow::conf_changed(void)
{
	if (saveAction)
		saveAction->setEnabled(conf_get_changed());
}

L
Linus Torvalds 已提交
1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733
void fixup_rootmenu(struct menu *menu)
{
	struct menu *child;
	static int menu_cnt = 0;

	menu->flags |= MENU_ROOT;
	for (child = menu->list; child; child = child->next) {
		if (child->prompt && child->prompt->type == P_MENU) {
			menu_cnt++;
			fixup_rootmenu(child);
			menu_cnt--;
		} else if (!menu_cnt)
			fixup_rootmenu(child);
	}
}

static const char *progname;

static void usage(void)
{
1734
	printf(_("%s [-s] <config>\n"), progname);
L
Linus Torvalds 已提交
1735 1736 1737 1738 1739 1740 1741 1742
	exit(0);
}

int main(int ac, char** av)
{
	ConfigMainWindow* v;
	const char *name;

1743 1744 1745
	bindtextdomain(PACKAGE, LOCALEDIR);
	textdomain(PACKAGE);

L
Linus Torvalds 已提交
1746 1747 1748 1749
	progname = av[0];
	configApp = new QApplication(ac, av);
	if (ac > 1 && av[1][0] == '-') {
		switch (av[1][1]) {
1750 1751 1752
		case 's':
			conf_set_message_callback(NULL);
			break;
L
Linus Torvalds 已提交
1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767
		case 'h':
		case '?':
			usage();
		}
		name = av[2];
	} else
		name = av[1];
	if (!name)
		usage();

	conf_parse(name);
	fixup_rootmenu(&rootmenu);
	conf_read(NULL);
	//zconfdump(stdout);

1768 1769
	configSettings = new ConfigSettings();
	configSettings->beginGroup("/kconfig/qconf");
L
Linus Torvalds 已提交
1770 1771 1772
	v = new ConfigMainWindow();

	//zconfdump(stdout);
1773
	configApp->setMainWidget(v);
L
Linus Torvalds 已提交
1774 1775
	configApp->connect(configApp, SIGNAL(lastWindowClosed()), SLOT(quit()));
	configApp->connect(configApp, SIGNAL(aboutToQuit()), v, SLOT(saveSettings()));
1776
	v->show();
L
Linus Torvalds 已提交
1777 1778
	configApp->exec();

1779 1780 1781
	configSettings->endGroup();
	delete configSettings;

L
Linus Torvalds 已提交
1782 1783
	return 0;
}