qconf.cc 44.5 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2 3
/*
 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
4
 * Copyright (C) 2015 Boris Barbulovski <bbarbulovski@gmail.com>
L
Linus Torvalds 已提交
5 6
 */

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

9
#include <QMainWindow>
10
#include <QList>
11
#include <qtextbrowser.h>
12
#include <QAction>
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

#include <stdlib.h>

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

#include "qconf.moc"
35
#include "images.h"
L
Linus Torvalds 已提交
36

37

L
Linus Torvalds 已提交
38
static QApplication *configApp;
39
static ConfigSettings *configSettings;
L
Linus Torvalds 已提交
40

41
QAction *ConfigMainWindow::saveAction;
42

43 44
static inline QString qgettext(const char* str)
{
45
	return QString::fromLocal8Bit(str);
46 47
}

48 49 50 51 52
ConfigSettings::ConfigSettings()
	: QSettings("kernel.org", "qconf")
{
}

L
Linus Torvalds 已提交
53 54 55
/**
 * Reads a list of integer values from the application settings.
 */
56
QList<int> ConfigSettings::readSizes(const QString& key, bool *ok)
L
Linus Torvalds 已提交
57
{
58
	QList<int> result;
L
Li Zefan 已提交
59

60 61 62 63 64 65 66 67 68 69 70 71
	if (contains(key))
	{
		QStringList entryList = value(key).toStringList();
		QStringList::Iterator it;

		for (it = entryList.begin(); it != entryList.end(); ++it)
			result.push_back((*it).toInt());

		*ok = true;
	}
	else
		*ok = false;
L
Linus Torvalds 已提交
72 73 74 75 76 77 78

	return result;
}

/**
 * Writes a list of integer values to the application settings.
 */
79
bool ConfigSettings::writeSizes(const QString& key, const QList<int>& value)
L
Linus Torvalds 已提交
80 81
{
	QStringList stringList;
82
	QList<int>::ConstIterator it;
L
Linus Torvalds 已提交
83 84 85

	for (it = value.begin(); it != value.end(); ++it)
		stringList.push_back(QString::number(*it));
86
	setValue(key, stringList);
87

88
	return true;
L
Linus Torvalds 已提交
89 90
}

91 92 93 94 95 96 97 98 99 100 101 102 103 104

/*
 * set the new data
 * TODO check the value
 */
void ConfigItem::okRename(int col)
{
}

/*
 * update the displayed of a menu entry
 */
void ConfigItem::updateMenu(void)
{
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
	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;
121
	prompt = qgettext(menu_get_prompt(menu));
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154

	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, QIcon());
		}
		goto set_prompt;
	case P_COMMENT:
		setPixmap(promptColIdx, QIcon());
		goto set_prompt;
	default:
		;
	}
	if (!sym)
		goto set_prompt;

	setText(nameColIdx, QString::fromLocal8Bit(sym->name));

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

155
		if (!sym_is_changeable(sym) && list->optMode == normalOpt) {
156
			setPixmap(promptColIdx, QIcon());
157 158 159
			setText(noColIdx, QString());
			setText(modColIdx, QString());
			setText(yesColIdx, QString());
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
			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);

		setText(dataColIdx, data);
		if (type == S_STRING)
			prompt = QString("%1: %2").arg(prompt).arg(data);
		else
			prompt = QString("(%2) %1").arg(prompt).arg(data);
		break;
	}
	if (!sym_has_value(sym) && visible)
210
		prompt += " (NEW)";
211 212
set_prompt:
	setText(promptColIdx, prompt);
213 214 215 216
}

void ConfigItem::testUpdateMenu(bool v)
{
217 218 219 220 221 222 223 224 225 226 227 228 229 230
	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();
231 232 233
}


234 235 236 237 238
/*
 * construct a menu entry
 */
void ConfigItem::init(void)
{
239 240 241 242 243 244 245 246 247 248
	if (menu) {
		ConfigList* list = listView();
		nextItem = (ConfigItem*)menu->data;
		menu->data = this;

		if (list->mode != fullMode)
			setExpanded(true);
		sym_calc_value(menu->sym);
	}
	updateMenu();
249 250 251 252 253 254 255
}

/*
 * destruct a menu entry
 */
ConfigItem::~ConfigItem(void)
{
256 257 258 259 260 261 262 263 264
	if (menu) {
		ConfigItem** ip = (ConfigItem**)&menu->data;
		for (; *ip; ip = &(*ip)->nextItem) {
			if (*ip == this) {
				*ip = nextItem;
				break;
			}
		}
	}
265 266
}

267 268 269
ConfigLineEdit::ConfigLineEdit(ConfigView* parent)
	: Parent(parent)
{
270
	connect(this, SIGNAL(editingFinished()), SLOT(hide()));
271 272
}

273
void ConfigLineEdit::show(ConfigItem* i)
L
Linus Torvalds 已提交
274 275
{
	item = i;
276 277 278
	if (sym_get_string_value(item->menu->sym))
		setText(QString::fromLocal8Bit(sym_get_string_value(item->menu->sym)));
	else
279
		setText(QString());
L
Linus Torvalds 已提交
280 281 282 283 284 285 286
	Parent::show();
	setFocus();
}

void ConfigLineEdit::keyPressEvent(QKeyEvent* e)
{
	switch (e->key()) {
287
	case Qt::Key_Escape:
L
Linus Torvalds 已提交
288
		break;
289 290
	case Qt::Key_Return:
	case Qt::Key_Enter:
291
		sym_set_string_value(item->menu->sym, text().toLatin1());
L
Linus Torvalds 已提交
292 293 294 295 296 297 298 299 300 301 302
		parent()->updateList(item);
		break;
	default:
		Parent::keyPressEvent(e);
		return;
	}
	e->accept();
	parent()->list->setFocus();
	hide();
}

303
ConfigList::ConfigList(ConfigView* p, const char *name)
304 305 306 307 308
	: Parent(p),
	  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),
309
	  showName(false), showRange(false), showData(false), mode(singleMode), optMode(normalOpt),
310 311
	  rootEntry(0), headerPopup(0)
{
312
	setObjectName(name);
313
	setSortingEnabled(false);
314 315
	setRootIsDecorated(true);

316 317 318
	setVerticalScrollMode(ScrollPerPixel);
	setHorizontalScrollMode(ScrollPerPixel);

319 320 321 322
	if (mode == symbolMode)
		setHeaderLabels(QStringList() << "Item" << "Name" << "N" << "M" << "Y" << "Value");
	else
		setHeaderLabels(QStringList() << "Option" << "Name" << "N" << "M" << "Y" << "Value");
323

324
	connect(this, SIGNAL(itemSelectionChanged(void)),
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
		SLOT(updateSelection(void)));

	if (name) {
		configSettings->beginGroup(name);
		showName = configSettings->value("/showName", false).toBool();
		showRange = configSettings->value("/showRange", false).toBool();
		showData = configSettings->value("/showData", false).toBool();
		optMode = (enum optionMode)configSettings->value("/optionMode", 0).toInt();
		configSettings->endGroup();
		connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings()));
	}

	addColumn(promptColIdx);

	reinit();
}

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;
351 352 353 354
}

void ConfigList::reinit(void)
{
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
	removeColumn(dataColIdx);
	removeColumn(yesColIdx);
	removeColumn(modColIdx);
	removeColumn(noColIdx);
	removeColumn(nameColIdx);

	if (showName)
		addColumn(nameColIdx);
	if (showRange) {
		addColumn(noColIdx);
		addColumn(modColIdx);
		addColumn(yesColIdx);
	}
	if (showData)
		addColumn(dataColIdx);

	updateListAll();
372 373 374 375
}

void ConfigList::saveSettings(void)
{
376 377 378 379 380 381 382 383
	if (!objectName().isEmpty()) {
		configSettings->beginGroup(objectName());
		configSettings->setValue("/showName", showName);
		configSettings->setValue("/showRange", showRange);
		configSettings->setValue("/showData", showData);
		configSettings->setValue("/optionMode", (int)optMode);
		configSettings->endGroup();
	}
384 385 386 387
}

ConfigItem* ConfigList::findConfigItem(struct menu *menu)
{
388 389 390 391 392 393 394 395
	ConfigItem* item = (ConfigItem*)menu->data;

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

	return item;
396 397 398 399
}

void ConfigList::updateSelection(void)
{
400 401 402
	struct menu *menu;
	enum prop_type type;

403 404 405 406 407
	if (mode == symbolMode)
		setHeaderLabels(QStringList() << "Item" << "Name" << "N" << "M" << "Y" << "Value");
	else
		setHeaderLabels(QStringList() << "Option" << "Name" << "N" << "M" << "Y" << "Value");

B
Boris Barbulovski 已提交
408 409 410
	if (selectedItems().count() == 0)
		return;

411 412 413 414 415 416 417 418 419 420 421
	ConfigItem* item = (ConfigItem*)selectedItems().first();
	if (!item)
		return;

	menu = item->menu;
	emit menuChanged(menu);
	if (!menu)
		return;
	type = menu->prompt ? menu->prompt->type : P_UNKNOWN;
	if (mode == menuMode && type == P_MENU)
		emit menuSelected(menu);
422 423 424 425
}

void ConfigList::updateList(ConfigItem* item)
{
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
	ConfigItem* last = 0;

	if (!rootEntry) {
		if (mode != listMode)
			goto update;
		QTreeWidgetItemIterator it(this);
		ConfigItem* item;

		while (*it) {
			item = (ConfigItem*)(*it);
			if (!item->menu)
				continue;
			item->testUpdateMenu(menu_is_visible(item->menu));

			++it;
		}
		return;
	}

	if (rootEntry != &rootmenu && (mode == singleMode ||
	    (mode == symbolMode && rootEntry->parent != &rootmenu))) {
447
		item = (ConfigItem *)topLevelItem(0);
448 449 450 451 452 453 454 455 456 457 458 459 460 461
		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);
		update();
462
		resizeColumnToContents(0);
463 464 465 466 467
		return;
	}
update:
	updateMenuList(this, rootEntry);
	update();
468
	resizeColumnToContents(0);
469 470 471 472
}

void ConfigList::setValue(ConfigItem* item, tristate val)
{
473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
	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->setExpanded(true);
		parent()->updateList(item);
		break;
	}
494 495 496 497
}

void ConfigList::changeValue(ConfigItem* item)
{
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
	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->setExpanded(!item->isExpanded());
		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->setExpanded(!item->isExpanded());
			else if (oldexpr == no)
				item->setExpanded(true);
		}
		if (oldexpr != newexpr)
			parent()->updateList(item);
		break;
	case S_INT:
	case S_HEX:
	case S_STRING:
530
		parent()->lineEdit->show(item);
531 532
		break;
	}
533 534 535 536
}

void ConfigList::setRootMenu(struct menu *menu)
{
537 538 539 540 541 542 543 544 545 546 547 548 549 550
	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();
	if (currentItem()) {
		currentItem()->setSelected(hasFocus());
		scrollToItem(currentItem());
	}
551 552 553 554
}

void ConfigList::setParentMenu(void)
{
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
	ConfigItem* item;
	struct menu *oldroot;

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

	QTreeWidgetItemIterator it(this);
	while (*it) {
		item = (ConfigItem *)(*it);
		if (item->menu == oldroot) {
			setCurrentItem(item);
			scrollToItem(item);
			break;
		}

		++it;
	}
574 575 576 577 578 579 580 581 582
}

/*
 * 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
 */
583
void ConfigList::updateMenuList(ConfigItem *parent, struct menu* menu)
584
{
585 586 587 588 589 590 591
	struct menu* child;
	ConfigItem* item;
	ConfigItem* last;
	bool visible;
	enum prop_type type;

	if (!menu) {
592 593 594 595 596
		while (parent->childCount() > 0)
		{
			delete parent->takeChild(0);
		}

597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645
		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 (!menuSkip(child)) {
			if (!child->sym && !child->list && !child->prompt)
				continue;
			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;
		}
	}
646 647
}

648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712
void ConfigList::updateMenuList(ConfigList *parent, struct menu* menu)
{
	struct menu* child;
	ConfigItem* item;
	ConfigItem* last;
	bool visible;
	enum prop_type type;

	if (!menu) {
		while (parent->topLevelItemCount() > 0)
		{
			delete parent->takeTopLevelItem(0);
		}

		return;
	}

	last = (ConfigItem*)parent->topLevelItem(0);
	if (last && !last->goParent)
		last = 0;
	for (child = menu->list; child; child = child->next) {
		item = last ? last->nextSibling() : (ConfigItem*)parent->topLevelItem(0);
		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 (!menuSkip(child)) {
			if (!child->sym && !child->list && !child->prompt)
				continue;
			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 = (ConfigItem*)parent->topLevelItem(0);
			if (last == item)
				last = 0;
			else while (last->nextSibling() != item)
				last = last->nextSibling();
			delete item;
		}
	}
}

713 714
void ConfigList::keyPressEvent(QKeyEvent* ev)
{
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
	QTreeWidgetItem* i = currentItem();
	ConfigItem* item;
	struct menu *menu;
	enum prop_type type;

	if (ev->key() == Qt::Key_Escape && mode != fullMode && mode != listMode) {
		emit parentSelected();
		ev->accept();
		return;
	}

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

	switch (ev->key()) {
	case Qt::Key_Return:
	case Qt::Key_Enter:
		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;
		}
	case Qt::Key_Space:
		changeValue(item);
		break;
	case Qt::Key_N:
		setValue(item, no);
		break;
	case Qt::Key_M:
		setValue(item, mod);
		break;
	case Qt::Key_Y:
		setValue(item, yes);
		break;
	default:
		Parent::keyPressEvent(ev);
		return;
	}
	ev->accept();
765 766
}

767
void ConfigList::mousePressEvent(QMouseEvent* e)
768
{
769 770 771
	//QPoint p(contentsToViewport(e->pos()));
	//printf("contentsMousePressEvent: %d,%d\n", p.x(), p.y());
	Parent::mousePressEvent(e);
772
}
773

774
void ConfigList::mouseReleaseEvent(QMouseEvent* e)
775
{
776 777 778 779 780 781 782 783 784 785 786 787
	QPoint p = e->pos();
	ConfigItem* item = (ConfigItem*)itemAt(p);
	struct menu *menu;
	enum prop_type ptype;
	QIcon icon;
	int idx, x;

	if (!item)
		goto skip;

	menu = item->menu;
	x = header()->offset() + p.x();
788
	idx = header()->logicalIndexAt(x);
789 790 791
	switch (idx) {
	case promptColIdx:
		icon = item->pixmap(promptColIdx);
792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
		if (!icon.isNull()) {
			int off = header()->sectionPosition(0) + visualRect(indexAt(p)).x() + 4; // 4 is Hardcoded image offset. There might be a way to do it properly.
			if (x >= off && x < off + icon.availableSizes().first().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);
			}
		}
808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
		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::mouseReleaseEvent(e);
826 827
}

828
void ConfigList::mouseMoveEvent(QMouseEvent* e)
829
{
830 831 832
	//QPoint p(contentsToViewport(e->pos()));
	//printf("contentsMouseMoveEvent: %d,%d\n", p.x(), p.y());
	Parent::mouseMoveEvent(e);
833 834
}

835
void ConfigList::mouseDoubleClickEvent(QMouseEvent* e)
836
{
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
	QPoint p = e->pos(); // TODO: Check if this works(was contentsToViewport).
	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::mouseDoubleClickEvent(e);
860 861 862 863
}

void ConfigList::focusInEvent(QFocusEvent *e)
{
864 865 866 867 868 869 870 871 872 873
	struct menu *menu = NULL;

	Parent::focusInEvent(e);

	ConfigItem* item = (ConfigItem *)currentItem();
	if (item) {
		item->setSelected(true);
		menu = item->menu;
	}
	emit gotFocus(menu);
874 875 876 877
}

void ConfigList::contextMenuEvent(QContextMenuEvent *e)
{
878 879 880 881 882
	if (e->y() <= header()->geometry().bottom()) {
		if (!headerPopup) {
			QAction *action;

			headerPopup = new QMenu(this);
883
			action = new QAction("Show Name", this);
884 885 886 887 888 889 890
			  action->setCheckable(true);
			  connect(action, SIGNAL(toggled(bool)),
				  parent(), SLOT(setShowName(bool)));
			  connect(parent(), SIGNAL(showNameChanged(bool)),
				  action, SLOT(setOn(bool)));
			  action->setChecked(showName);
			  headerPopup->addAction(action);
891
			action = new QAction("Show Range", this);
892 893 894 895 896 897 898
			  action->setCheckable(true);
			  connect(action, SIGNAL(toggled(bool)),
				  parent(), SLOT(setShowRange(bool)));
			  connect(parent(), SIGNAL(showRangeChanged(bool)),
				  action, SLOT(setOn(bool)));
			  action->setChecked(showRange);
			  headerPopup->addAction(action);
899
			action = new QAction("Show Data", this);
900 901 902 903 904 905 906 907 908 909 910 911
			  action->setCheckable(true);
			  connect(action, SIGNAL(toggled(bool)),
				  parent(), SLOT(setShowData(bool)));
			  connect(parent(), SIGNAL(showDataChanged(bool)),
				  action, SLOT(setOn(bool)));
			  action->setChecked(showData);
			  headerPopup->addAction(action);
		}
		headerPopup->exec(e->globalPos());
		e->accept();
	} else
		e->ignore();
912 913
}

914 915 916 917
ConfigView*ConfigView::viewList;
QAction *ConfigView::showNormalAction;
QAction *ConfigView::showAllAction;
QAction *ConfigView::showPromptAction;
L
Linus Torvalds 已提交
918

919
ConfigView::ConfigView(QWidget* parent, const char *name)
920
	: Parent(parent)
L
Linus Torvalds 已提交
921
{
922
	setObjectName(name);
923
	QVBoxLayout *verticalLayout = new QVBoxLayout(this);
924
	verticalLayout->setContentsMargins(0, 0, 0, 0);
925

926
	list = new ConfigList(this);
927
	verticalLayout->addWidget(list);
L
Linus Torvalds 已提交
928 929
	lineEdit = new ConfigLineEdit(this);
	lineEdit->hide();
930
	verticalLayout->addWidget(lineEdit);
L
Linus Torvalds 已提交
931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947

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

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

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

948
void ConfigView::setOptionMode(QAction *act)
949
{
950 951 952 953 954 955 956 957
	if (act == showNormalAction)
		list->optMode = normalOpt;
	else if (act == showAllAction)
		list->optMode = allOpt;
	else
		list->optMode = promptOpt;

	list->updateListAll();
958 959 960 961
}

void ConfigView::setShowName(bool b)
{
962 963 964 965 966
	if (list->showName != b) {
		list->showName = b;
		list->reinit();
		emit showNameChanged(b);
	}
967 968 969 970
}

void ConfigView::setShowRange(bool b)
{
971 972 973 974 975
	if (list->showRange != b) {
		list->showRange = b;
		list->reinit();
		emit showRangeChanged(b);
	}
976 977 978 979
}

void ConfigView::setShowData(bool b)
{
980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995
	if (list->showData != b) {
		list->showData = b;
		list->reinit();
		emit showDataChanged(b);
	}
}

void ConfigList::setAllOpen(bool open)
{
	QTreeWidgetItemIterator it(this);

	while (*it) {
		(*it)->setExpanded(open);

		++it;
	}
996 997
}

998
void ConfigView::updateList(ConfigItem* item)
L
Linus Torvalds 已提交
999
{
1000 1001 1002 1003
	ConfigView* v;

	for (v = viewList; v; v = v->nextView)
		v->list->updateList(item);
L
Linus Torvalds 已提交
1004 1005 1006 1007
}

void ConfigView::updateListAll(void)
{
1008 1009 1010 1011
	ConfigView* v;

	for (v = viewList; v; v = v->nextView)
		v->list->updateListAll();
L
Linus Torvalds 已提交
1012 1013
}

1014
ConfigInfoView::ConfigInfoView(QWidget* parent, const char *name)
1015
	: Parent(parent), sym(0), _menu(0)
1016
{
1017 1018 1019 1020 1021
	setObjectName(name);


	if (!objectName().isEmpty()) {
		configSettings->beginGroup(objectName());
1022
		setShowDebug(configSettings->value("/showDebug", false).toBool());
1023 1024 1025 1026 1027 1028 1029
		configSettings->endGroup();
		connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings()));
	}
}

void ConfigInfoView::saveSettings(void)
{
1030 1031 1032 1033 1034
	if (!objectName().isEmpty()) {
		configSettings->beginGroup(objectName());
		configSettings->setValue("/showDebug", showDebug());
		configSettings->endGroup();
	}
1035 1036 1037 1038 1039 1040
}

void ConfigInfoView::setShowDebug(bool b)
{
	if (_showDebug != b) {
		_showDebug = b;
A
Alexander Stein 已提交
1041
		if (_menu)
1042
			menuInfo();
1043 1044
		else if (sym)
			symbolInfo();
1045 1046 1047 1048 1049 1050
		emit showDebugChanged(b);
	}
}

void ConfigInfoView::setInfo(struct menu *m)
{
A
Alexander Stein 已提交
1051
	if (_menu == m)
1052
		return;
A
Alexander Stein 已提交
1053
	_menu = m;
1054
	sym = NULL;
A
Alexander Stein 已提交
1055
	if (!_menu)
1056
		clear();
1057
	else
1058 1059 1060
		menuInfo();
}

1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
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);
}

1077 1078 1079 1080 1081
void ConfigInfoView::menuInfo(void)
{
	struct symbol* sym;
	QString head, debug, help;

A
Alexander Stein 已提交
1082
	sym = _menu->sym;
1083
	if (sym) {
A
Alexander Stein 已提交
1084
		if (_menu->prompt) {
1085
			head += "<big><b>";
1086
			head += print_filter(_menu->prompt->text);
1087 1088 1089
			head += "</b></big>";
			if (sym->name) {
				head += " (";
1090 1091
				if (showDebug())
					head += QString().sprintf("<a href=\"s%p\">", sym);
1092
				head += print_filter(sym->name);
1093 1094
				if (showDebug())
					head += "</a>";
1095 1096 1097 1098
				head += ")";
			}
		} else if (sym->name) {
			head += "<big><b>";
1099 1100
			if (showDebug())
				head += QString().sprintf("<a href=\"s%p\">", sym);
1101
			head += print_filter(sym->name);
1102 1103
			if (showDebug())
				head += "</a>";
1104 1105 1106 1107 1108 1109 1110
			head += "</b></big>";
		}
		head += "<br><br>";

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

1111
		struct gstr help_gstr = str_new();
A
Alexander Stein 已提交
1112
		menu_get_ext_help(_menu, &help_gstr);
1113 1114
		help = print_filter(str_get(&help_gstr));
		str_free(&help_gstr);
A
Alexander Stein 已提交
1115
	} else if (_menu->prompt) {
1116
		head += "<big><b>";
1117
		head += print_filter(_menu->prompt->text);
1118 1119
		head += "</b></big><br><br>";
		if (showDebug()) {
A
Alexander Stein 已提交
1120
			if (_menu->prompt->visible.expr) {
1121
				debug += "&nbsp;&nbsp;dep: ";
A
Alexander Stein 已提交
1122
				expr_print(_menu->prompt->visible.expr, expr_print_help, &debug, E_NONE);
1123 1124 1125 1126 1127
				debug += "<br><br>";
			}
		}
	}
	if (showDebug())
A
Alexander Stein 已提交
1128
		debug += QString().sprintf("defined at %s:%d<br><br>", _menu->file->name, _menu->lineno);
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150

	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:
1151
			debug += QString().sprintf("prompt: <a href=\"m%p\">", prop->menu);
1152
			debug += print_filter(prop->text);
1153
			debug += "</a><br>";
1154 1155
			break;
		case P_DEFAULT:
1156 1157 1158 1159
		case P_SELECT:
		case P_RANGE:
			debug += prop_get_type_name(prop->type);
			debug += ": ";
1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
			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;
1190 1191
	for (int i = 0; (i = res.indexOf(re, i)) >= 0;) {
		switch (res[i].toLatin1()) {
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
		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;
}

1217
void ConfigInfoView::expr_print_help(void *data, struct symbol *sym, const char *str)
1218
{
1219 1220 1221 1222 1223 1224 1225 1226 1227
	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;
1228 1229
}

1230
QMenu* ConfigInfoView::createStandardContextMenu(const QPoint & pos)
1231
{
1232
	QMenu* popup = Parent::createStandardContextMenu(pos);
1233
	QAction* action = new QAction("Show Debug Info", popup);
1234
	  action->setCheckable(true);
1235 1236
	  connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool)));
	  connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setOn(bool)));
1237
	  action->setChecked(showDebug());
1238
	popup->addSeparator();
1239
	popup->addAction(action);
1240 1241 1242
	return popup;
}

1243
void ConfigInfoView::contextMenuEvent(QContextMenuEvent *e)
1244
{
1245
	Parent::contextMenuEvent(e);
1246 1247
}

1248
ConfigSearchWindow::ConfigSearchWindow(ConfigMainWindow* parent, const char *name)
1249
	: Parent(parent), result(NULL)
1250
{
1251
	setObjectName(name);
1252
	setWindowTitle("Search Config");
1253

1254 1255 1256 1257 1258 1259
	QVBoxLayout* layout1 = new QVBoxLayout(this);
	layout1->setContentsMargins(11, 11, 11, 11);
	layout1->setSpacing(6);
	QHBoxLayout* layout2 = new QHBoxLayout(0);
	layout2->setContentsMargins(0, 0, 0, 0);
	layout2->setSpacing(6);
1260
	layout2->addWidget(new QLabel("Find:", this));
1261 1262 1263
	editField = new QLineEdit(this);
	connect(editField, SIGNAL(returnPressed()), SLOT(search()));
	layout2->addWidget(editField);
1264
	searchButton = new QPushButton("Search", this);
1265
	searchButton->setAutoDefault(false);
1266 1267 1268 1269
	connect(searchButton, SIGNAL(clicked()), SLOT(search()));
	layout2->addWidget(searchButton);
	layout1->addLayout(layout2);

1270
	split = new QSplitter(this);
1271
	split->setOrientation(Qt::Vertical);
1272
	list = new ConfigView(split, name);
1273
	list->list->mode = listMode;
1274
	info = new ConfigInfoView(split, name);
1275 1276
	connect(list->list, SIGNAL(menuChanged(struct menu *)),
		info, SLOT(setInfo(struct menu *)));
1277 1278 1279
	connect(list->list, SIGNAL(menuChanged(struct menu *)),
		parent, SLOT(setMenuLink(struct menu *)));

1280
	layout1->addWidget(split);
1281 1282

	if (name) {
1283 1284
		QVariant x, y;
		int width, height;
1285 1286 1287
		bool ok;

		configSettings->beginGroup(name);
1288 1289
		width = configSettings->value("/window width", parent->width() / 2).toInt();
		height = configSettings->value("/window height", parent->height() / 2).toInt();
1290
		resize(width, height);
1291 1292 1293 1294
		x = configSettings->value("/window x");
		y = configSettings->value("/window y");
		if ((x.isValid())&&(y.isValid()))
			move(x.toInt(), y.toInt());
1295
		QList<int> sizes = configSettings->readSizes("/split", &ok);
1296 1297 1298 1299 1300 1301 1302 1303 1304
		if (ok)
			split->setSizes(sizes);
		configSettings->endGroup();
		connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings()));
	}
}

void ConfigSearchWindow::saveSettings(void)
{
1305 1306 1307 1308 1309 1310 1311 1312 1313
	if (!objectName().isEmpty()) {
		configSettings->beginGroup(objectName());
		configSettings->setValue("/window x", pos().x());
		configSettings->setValue("/window y", pos().y());
		configSettings->setValue("/window width", size().width());
		configSettings->setValue("/window height", size().height());
		configSettings->writeSizes("/split", split->sizes());
		configSettings->endGroup();
	}
1314 1315 1316 1317
}

void ConfigSearchWindow::search(void)
{
1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333
	struct symbol **p;
	struct property *prop;
	ConfigItem *lastItem = NULL;

	free(result);
	list->list->clear();
	info->clear();

	result = sym_re_search(editField->text().toLatin1());
	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));
	}
1334 1335
}

L
Linus Torvalds 已提交
1336 1337 1338 1339
/*
 * Construct the complete config widget
 */
ConfigMainWindow::ConfigMainWindow(void)
1340
	: searchWindow(0)
L
Linus Torvalds 已提交
1341 1342
{
	QMenuBar* menu;
1343
	bool ok = true;
1344 1345
	QVariant x, y;
	int width, height;
R
Randy Dunlap 已提交
1346
	char title[256];
L
Linus Torvalds 已提交
1347

1348
	QDesktopWidget *d = configApp->desktop();
1349 1350
	snprintf(title, sizeof(title), "%s%s",
		rootmenu.prompt->text,
1351 1352
		""
		);
1353
	setWindowTitle(title);
L
Linus Torvalds 已提交
1354

1355 1356
	width = configSettings->value("/window width", d->width() - 64).toInt();
	height = configSettings->value("/window height", d->height() - 64).toInt();
L
Linus Torvalds 已提交
1357
	resize(width, height);
1358 1359 1360 1361
	x = configSettings->value("/window x");
	y = configSettings->value("/window y");
	if ((x.isValid())&&(y.isValid()))
		move(x.toInt(), y.toInt());
L
Linus Torvalds 已提交
1362 1363

	split1 = new QSplitter(this);
1364
	split1->setOrientation(Qt::Horizontal);
L
Linus Torvalds 已提交
1365 1366
	setCentralWidget(split1);

1367
	menuView = new ConfigView(split1, "menu");
L
Linus Torvalds 已提交
1368 1369 1370
	menuList = menuView->list;

	split2 = new QSplitter(split1);
1371
	split2->setOrientation(Qt::Vertical);
L
Linus Torvalds 已提交
1372 1373

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

1377
	helpText = new ConfigInfoView(split2, "help");
L
Linus Torvalds 已提交
1378 1379 1380 1381 1382

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

	menu = menuBar();
1383
	toolBar = new QToolBar("Tools", this);
1384
	addToolBar(toolBar);
L
Linus Torvalds 已提交
1385

1386
	backAction = new QAction(QPixmap(xpm_back), "Back", this);
1387
	  connect(backAction, SIGNAL(triggered(bool)), SLOT(goBack()));
1388
	  backAction->setEnabled(false);
1389
	QAction *quitAction = new QAction("&Quit", this);
1390
	quitAction->setShortcut(Qt::CTRL + Qt::Key_Q);
1391
	  connect(quitAction, SIGNAL(triggered(bool)), SLOT(close()));
1392
	QAction *loadAction = new QAction(QPixmap(xpm_load), "&Load", this);
1393
	loadAction->setShortcut(Qt::CTRL + Qt::Key_L);
1394
	  connect(loadAction, SIGNAL(triggered(bool)), SLOT(loadConfig()));
1395
	saveAction = new QAction(QPixmap(xpm_save), "&Save", this);
1396
	saveAction->setShortcut(Qt::CTRL + Qt::Key_S);
1397
	  connect(saveAction, SIGNAL(triggered(bool)), SLOT(saveConfig()));
1398 1399 1400
	conf_set_changed_callback(conf_changed);
	// Set saveAction's initial state
	conf_changed();
1401 1402
	configname = xstrdup(conf_get_configname());

1403
	QAction *saveAsAction = new QAction("Save &As...", this);
1404
	  connect(saveAsAction, SIGNAL(triggered(bool)), SLOT(saveConfigAs()));
1405
	QAction *searchAction = new QAction("&Find", this);
1406
	searchAction->setShortcut(Qt::CTRL + Qt::Key_F);
1407
	  connect(searchAction, SIGNAL(triggered(bool)), SLOT(searchConfig()));
1408
	singleViewAction = new QAction(QPixmap(xpm_single_view), "Single View", this);
1409
	singleViewAction->setCheckable(true);
1410
	  connect(singleViewAction, SIGNAL(triggered(bool)), SLOT(showSingleView()));
1411
	splitViewAction = new QAction(QPixmap(xpm_split_view), "Split View", this);
1412
	splitViewAction->setCheckable(true);
1413
	  connect(splitViewAction, SIGNAL(triggered(bool)), SLOT(showSplitView()));
1414
	fullViewAction = new QAction(QPixmap(xpm_tree_view), "Full View", this);
1415
	fullViewAction->setCheckable(true);
1416
	  connect(fullViewAction, SIGNAL(triggered(bool)), SLOT(showFullView()));
L
Linus Torvalds 已提交
1417

1418
	QAction *showNameAction = new QAction("Show Name", this);
1419
	  showNameAction->setCheckable(true);
1420
	  connect(showNameAction, SIGNAL(toggled(bool)), configView, SLOT(setShowName(bool)));
1421
	  showNameAction->setChecked(configView->showName());
1422
	QAction *showRangeAction = new QAction("Show Range", this);
1423
	  showRangeAction->setCheckable(true);
1424
	  connect(showRangeAction, SIGNAL(toggled(bool)), configView, SLOT(setShowRange(bool)));
1425
	QAction *showDataAction = new QAction("Show Data", this);
1426
	  showDataAction->setCheckable(true);
1427
	  connect(showDataAction, SIGNAL(toggled(bool)), configView, SLOT(setShowData(bool)));
1428 1429

	QActionGroup *optGroup = new QActionGroup(this);
1430
	optGroup->setExclusive(true);
1431
	connect(optGroup, SIGNAL(triggered(QAction*)), configView,
1432
		SLOT(setOptionMode(QAction *)));
1433
	connect(optGroup, SIGNAL(triggered(QAction *)), menuView,
1434 1435
		SLOT(setOptionMode(QAction *)));

1436 1437 1438
	configView->showNormalAction = new QAction("Show Normal Options", optGroup);
	configView->showAllAction = new QAction("Show All Options", optGroup);
	configView->showPromptAction = new QAction("Show Prompt Options", optGroup);
1439 1440 1441
	configView->showNormalAction->setCheckable(true);
	configView->showAllAction->setCheckable(true);
	configView->showPromptAction->setCheckable(true);
1442

1443
	QAction *showDebugAction = new QAction("Show Debug Info", this);
1444
	  showDebugAction->setCheckable(true);
1445
	  connect(showDebugAction, SIGNAL(toggled(bool)), helpText, SLOT(setShowDebug(bool)));
1446
	  showDebugAction->setChecked(helpText->showDebug());
L
Linus Torvalds 已提交
1447

1448
	QAction *showIntroAction = new QAction("Introduction", this);
1449
	  connect(showIntroAction, SIGNAL(triggered(bool)), SLOT(showIntro()));
1450
	QAction *showAboutAction = new QAction("About", this);
1451
	  connect(showAboutAction, SIGNAL(triggered(bool)), SLOT(showAbout()));
L
Linus Torvalds 已提交
1452 1453

	// init tool bar
1454
	toolBar->addAction(backAction);
L
Linus Torvalds 已提交
1455
	toolBar->addSeparator();
1456 1457
	toolBar->addAction(loadAction);
	toolBar->addAction(saveAction);
L
Linus Torvalds 已提交
1458
	toolBar->addSeparator();
1459 1460 1461
	toolBar->addAction(singleViewAction);
	toolBar->addAction(splitViewAction);
	toolBar->addAction(fullViewAction);
L
Linus Torvalds 已提交
1462 1463

	// create config menu
1464
	QMenu* config = menu->addMenu("&File");
1465 1466 1467
	config->addAction(loadAction);
	config->addAction(saveAction);
	config->addAction(saveAsAction);
1468
	config->addSeparator();
1469
	config->addAction(quitAction);
L
Linus Torvalds 已提交
1470

1471
	// create edit menu
1472
	QMenu* editMenu = menu->addMenu("&Edit");
1473
	editMenu->addAction(searchAction);
1474

L
Linus Torvalds 已提交
1475
	// create options menu
1476
	QMenu* optionMenu = menu->addMenu("&Option");
1477 1478 1479
	optionMenu->addAction(showNameAction);
	optionMenu->addAction(showRangeAction);
	optionMenu->addAction(showDataAction);
1480
	optionMenu->addSeparator();
1481
	optionMenu->addActions(optGroup->actions());
1482
	optionMenu->addSeparator();
1483
	optionMenu->addAction(showDebugAction);
L
Linus Torvalds 已提交
1484 1485

	// create help menu
1486
	menu->addSeparator();
1487
	QMenu* helpMenu = menu->addMenu("&Help");
1488 1489
	helpMenu->addAction(showIntroAction);
	helpMenu->addAction(showAboutAction);
L
Linus Torvalds 已提交
1490

1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507
	connect(configList, SIGNAL(menuChanged(struct menu *)),
		helpText, SLOT(setInfo(struct menu *)));
	connect(configList, SIGNAL(menuSelected(struct menu *)),
		SLOT(changeMenu(struct menu *)));
	connect(configList, SIGNAL(parentSelected()),
		SLOT(goBack()));
	connect(menuList, SIGNAL(menuChanged(struct menu *)),
		helpText, SLOT(setInfo(struct menu *)));
	connect(menuList, SIGNAL(menuSelected(struct menu *)),
		SLOT(changeMenu(struct menu *)));

	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 *)),
		SLOT(listFocusChanged(void)));
1508 1509
	connect(helpText, SIGNAL(menuSelected(struct menu *)),
		SLOT(setMenuLink(struct menu *)));
L
Linus Torvalds 已提交
1510

1511
	QString listMode = configSettings->value("/listMode", "symbol").toString();
L
Linus Torvalds 已提交
1512 1513 1514 1515 1516 1517 1518 1519
	if (listMode == "single")
		showSingleView();
	else if (listMode == "full")
		showFullView();
	else /*if (listMode == "split")*/
		showSplitView();

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

1524
	sizes = configSettings->readSizes("/split2", &ok);
L
Linus Torvalds 已提交
1525 1526 1527 1528 1529 1530
	if (ok)
		split2->setSizes(sizes);
}

void ConfigMainWindow::loadConfig(void)
{
1531 1532 1533 1534 1535 1536
	QString str;
	QByteArray ba;
	const char *name;

	str = QFileDialog::getOpenFileName(this, "", configname);
	if (str.isNull())
L
Linus Torvalds 已提交
1537
		return;
1538 1539 1540 1541 1542

	ba = str.toLocal8Bit();
	name = ba.data();

	if (conf_read(name))
1543
		QMessageBox::information(this, "qconf", "Unable to load configuration!");
1544 1545 1546 1547

	free(configname);
	configname = xstrdup(name);

L
Linus Torvalds 已提交
1548 1549 1550
	ConfigView::updateListAll();
}

1551
bool ConfigMainWindow::saveConfig(void)
L
Linus Torvalds 已提交
1552
{
1553
	if (conf_write(configname)) {
1554
		QMessageBox::information(this, "qconf", "Unable to save configuration!");
1555 1556
		return false;
	}
1557 1558
	conf_write_autoconf(0);

1559
	return true;
L
Linus Torvalds 已提交
1560 1561 1562 1563
}

void ConfigMainWindow::saveConfigAs(void)
{
1564 1565 1566 1567 1568 1569
	QString str;
	QByteArray ba;
	const char *name;

	str = QFileDialog::getSaveFileName(this, "", configname);
	if (str.isNull())
L
Linus Torvalds 已提交
1570
		return;
1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581

	ba = str.toLocal8Bit();
	name = ba.data();

	if (conf_write(name)) {
		QMessageBox::information(this, "qconf", "Unable to save configuration!");
	}
	conf_write_autoconf(0);

	free(configname);
	configname = xstrdup(name);
L
Linus Torvalds 已提交
1582 1583
}

1584 1585 1586
void ConfigMainWindow::searchConfig(void)
{
	if (!searchWindow)
1587
		searchWindow = new ConfigSearchWindow(this, "search");
1588 1589 1590
	searchWindow->show();
}

L
Linus Torvalds 已提交
1591 1592
void ConfigMainWindow::changeMenu(struct menu *menu)
{
1593 1594 1595 1596 1597
	configList->setRootMenu(menu);
	if (configList->rootEntry->parent == &rootmenu)
		backAction->setEnabled(false);
	else
		backAction->setEnabled(true);
L
Linus Torvalds 已提交
1598 1599
}

1600
void ConfigMainWindow::setMenuLink(struct menu *menu)
L
Linus Torvalds 已提交
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 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649
	struct menu *parent;
	ConfigList* list = NULL;
	ConfigItem* item;

	if (configList->menuSkip(menu))
		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);
			configList->clearSelection();
			list = menuList;
		} else {
			list = configList;
			parent = menu_get_parent_menu(menu->parent);
			if (!parent)
				return;
			item = menuList->findConfigItem(parent);
			if (item) {
				item->setSelected(true);
				menuList->scrollToItem(item);
			}
			list->setRootMenu(parent);
		}
		break;
	case fullMode:
		list = configList;
		break;
	default:
		break;
	}

	if (list) {
		item = list->findConfigItem(menu);
		if (item) {
			item->setSelected(true);
			list->scrollToItem(item);
			list->setFocus();
		}
	}
L
Linus Torvalds 已提交
1650 1651
}

1652 1653
void ConfigMainWindow::listFocusChanged(void)
{
1654 1655
	if (menuList->mode == menuMode)
		configList->clearSelection();
1656 1657
}

L
Linus Torvalds 已提交
1658 1659
void ConfigMainWindow::goBack(void)
{
1660
	ConfigItem* item, *oldSelection;
1661 1662 1663 1664

	configList->setParentMenu();
	if (configList->rootEntry == &rootmenu)
		backAction->setEnabled(false);
B
Boris Barbulovski 已提交
1665 1666 1667 1668

	if (menuList->selectedItems().count() == 0)
		return;

1669
	item = (ConfigItem*)menuList->selectedItems().first();
1670
	oldSelection = item;
1671 1672
	while (item) {
		if (item->menu == configList->rootEntry) {
1673
			oldSelection->setSelected(false);
1674 1675 1676 1677 1678
			item->setSelected(true);
			break;
		}
		item = (ConfigItem*)item->parent();
	}
L
Linus Torvalds 已提交
1679 1680 1681 1682
}

void ConfigMainWindow::showSingleView(void)
{
1683 1684 1685 1686 1687 1688 1689
	singleViewAction->setEnabled(false);
	singleViewAction->setChecked(true);
	splitViewAction->setEnabled(true);
	splitViewAction->setChecked(false);
	fullViewAction->setEnabled(true);
	fullViewAction->setChecked(false);

L
Linus Torvalds 已提交
1690
	menuView->hide();
1691 1692 1693 1694 1695 1696
	menuList->setRootMenu(0);
	configList->mode = singleMode;
	if (configList->rootEntry == &rootmenu)
		configList->updateListAll();
	else
		configList->setRootMenu(&rootmenu);
L
Linus Torvalds 已提交
1697 1698 1699 1700 1701
	configList->setFocus();
}

void ConfigMainWindow::showSplitView(void)
{
1702 1703 1704 1705 1706 1707 1708
	singleViewAction->setEnabled(true);
	singleViewAction->setChecked(false);
	splitViewAction->setEnabled(false);
	splitViewAction->setChecked(true);
	fullViewAction->setEnabled(true);
	fullViewAction->setChecked(false);

1709 1710 1711 1712 1713 1714 1715 1716 1717 1718
	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);
L
Linus Torvalds 已提交
1719 1720 1721 1722 1723 1724
	menuView->show();
	menuList->setFocus();
}

void ConfigMainWindow::showFullView(void)
{
1725 1726 1727 1728 1729 1730 1731
	singleViewAction->setEnabled(true);
	singleViewAction->setChecked(false);
	splitViewAction->setEnabled(true);
	splitViewAction->setChecked(false);
	fullViewAction->setEnabled(false);
	fullViewAction->setChecked(true);

L
Linus Torvalds 已提交
1732
	menuView->hide();
1733 1734 1735 1736 1737 1738
	menuList->setRootMenu(0);
	configList->mode = fullMode;
	if (configList->rootEntry == &rootmenu)
		configList->updateListAll();
	else
		configList->setRootMenu(&rootmenu);
L
Linus Torvalds 已提交
1739 1740 1741 1742 1743 1744 1745 1746 1747
	configList->setFocus();
}

/*
 * ask for saving configuration before quitting
 * TODO ask only when something changed
 */
void ConfigMainWindow::closeEvent(QCloseEvent* e)
{
1748
	if (!conf_get_changed()) {
L
Linus Torvalds 已提交
1749 1750 1751
		e->accept();
		return;
	}
1752
	QMessageBox mb("qconf", "Save configuration?", QMessageBox::Warning,
L
Linus Torvalds 已提交
1753
			QMessageBox::Yes | QMessageBox::Default, QMessageBox::No, QMessageBox::Cancel | QMessageBox::Escape);
1754 1755 1756
	mb.setButtonText(QMessageBox::Yes, "&Save Changes");
	mb.setButtonText(QMessageBox::No, "&Discard Changes");
	mb.setButtonText(QMessageBox::Cancel, "Cancel Exit");
L
Linus Torvalds 已提交
1757 1758
	switch (mb.exec()) {
	case QMessageBox::Yes:
1759 1760 1761 1762 1763
		if (saveConfig())
			e->accept();
		else
			e->ignore();
		break;
L
Linus Torvalds 已提交
1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774
	case QMessageBox::No:
		e->accept();
		break;
	case QMessageBox::Cancel:
		e->ignore();
		break;
	}
}

void ConfigMainWindow::showIntro(void)
{
1775
	static const QString str = "Welcome to the qconf graphical configuration tool.\n\n"
L
Linus Torvalds 已提交
1776 1777 1778 1779 1780 1781 1782 1783 1784
		"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"
1785
		"which you can then match by examining other options.\n\n";
L
Linus Torvalds 已提交
1786 1787 1788 1789 1790 1791

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

void ConfigMainWindow::showAbout(void)
{
1792
	static const QString str = "qconf is Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>.\n"
1793
		"Copyright (C) 2015 Boris Barbulovski <bbarbulovski@gmail.com>.\n\n"
1794
		"Bug reports and feature request can also be entered at http://bugzilla.kernel.org/\n";
L
Linus Torvalds 已提交
1795 1796 1797 1798 1799 1800

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

void ConfigMainWindow::saveSettings(void)
{
1801 1802 1803 1804
	configSettings->setValue("/window x", pos().x());
	configSettings->setValue("/window y", pos().y());
	configSettings->setValue("/window width", size().width());
	configSettings->setValue("/window height", size().height());
L
Linus Torvalds 已提交
1805 1806

	QString entry;
1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818
	switch(configList->mode) {
	case singleMode :
		entry = "single";
		break;

	case symbolMode :
		entry = "split";
		break;

	case fullMode :
		entry = "full";
		break;
1819

1820 1821 1822
	default:
		break;
	}
1823
	configSettings->setValue("/listMode", entry);
L
Linus Torvalds 已提交
1824

1825 1826
	configSettings->writeSizes("/split1", split1->sizes());
	configSettings->writeSizes("/split2", split2->sizes());
L
Linus Torvalds 已提交
1827 1828
}

1829 1830 1831 1832 1833 1834
void ConfigMainWindow::conf_changed(void)
{
	if (saveAction)
		saveAction->setEnabled(conf_get_changed());
}

L
Linus Torvalds 已提交
1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854
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)
{
1855
	printf("%s [-s] <config>\n", progname);
L
Linus Torvalds 已提交
1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867
	exit(0);
}

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

	progname = av[0];
	configApp = new QApplication(ac, av);
	if (ac > 1 && av[1][0] == '-') {
		switch (av[1][1]) {
1868 1869 1870
		case 's':
			conf_set_message_callback(NULL);
			break;
L
Linus Torvalds 已提交
1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885
		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);

1886 1887
	configSettings = new ConfigSettings();
	configSettings->beginGroup("/kconfig/qconf");
L
Linus Torvalds 已提交
1888 1889 1890 1891 1892
	v = new ConfigMainWindow();

	//zconfdump(stdout);
	configApp->connect(configApp, SIGNAL(lastWindowClosed()), SLOT(quit()));
	configApp->connect(configApp, SIGNAL(aboutToQuit()), v, SLOT(saveSettings()));
1893
	v->show();
L
Linus Torvalds 已提交
1894 1895
	configApp->exec();

1896 1897
	configSettings->endGroup();
	delete configSettings;
1898 1899
	delete v;
	delete configApp;
1900

L
Linus Torvalds 已提交
1901 1902
	return 0;
}