qconf.cc 45.1 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
 */

7
#include <QAction>
8 9
#include <QApplication>
#include <QCloseEvent>
10
#include <QDebug>
11
#include <QDesktopWidget>
12
#include <QFileDialog>
13 14 15
#include <QLabel>
#include <QLayout>
#include <QList>
16
#include <QMenu>
17 18 19
#include <QMenuBar>
#include <QMessageBox>
#include <QToolBar>
L
Linus Torvalds 已提交
20 21 22 23 24 25

#include <stdlib.h>

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

26
#include "images.h"
L
Linus Torvalds 已提交
27

28

L
Linus Torvalds 已提交
29
static QApplication *configApp;
30
static ConfigSettings *configSettings;
L
Linus Torvalds 已提交
31

32
QAction *ConfigMainWindow::saveAction;
33

34 35 36 37 38
ConfigSettings::ConfigSettings()
	: QSettings("kernel.org", "qconf")
{
}

L
Linus Torvalds 已提交
39 40 41
/**
 * Reads a list of integer values from the application settings.
 */
42
QList<int> ConfigSettings::readSizes(const QString& key, bool *ok)
L
Linus Torvalds 已提交
43
{
44
	QList<int> result;
L
Li Zefan 已提交
45

46 47 48 49 50 51 52 53 54 55 56 57
	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 已提交
58 59 60 61 62 63 64

	return result;
}

/**
 * Writes a list of integer values to the application settings.
 */
65
bool ConfigSettings::writeSizes(const QString& key, const QList<int>& value)
L
Linus Torvalds 已提交
66 67
{
	QStringList stringList;
68
	QList<int>::ConstIterator it;
L
Linus Torvalds 已提交
69 70 71

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

74
	return true;
L
Linus Torvalds 已提交
75 76
}

77 78 79 80 81 82 83
QIcon ConfigItem::symbolYesIcon;
QIcon ConfigItem::symbolModIcon;
QIcon ConfigItem::symbolNoIcon;
QIcon ConfigItem::choiceYesIcon;
QIcon ConfigItem::choiceNoIcon;
QIcon ConfigItem::menuIcon;
QIcon ConfigItem::menubackIcon;
84 85 86 87 88 89 90 91 92 93 94 95 96 97

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

/*
 * update the displayed of a menu entry
 */
void ConfigItem::updateMenu(void)
{
98 99 100 101 102 103 104 105 106
	ConfigList* list;
	struct symbol* sym;
	struct property *prop;
	QString prompt;
	int type;
	tristate expr;

	list = listView();
	if (goParent) {
107
		setIcon(promptColIdx, menubackIcon);
108 109 110 111 112 113
		prompt = "..";
		goto set_prompt;
	}

	sym = menu->sym;
	prop = menu->prompt;
114
	prompt = menu_get_prompt(menu);
115 116 117 118 119 120 121 122 123

	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;
124
			setIcon(promptColIdx, menuIcon);
125 126 127
		} else {
			if (sym)
				break;
128
			setIcon(promptColIdx, QIcon());
129 130 131
		}
		goto set_prompt;
	case P_COMMENT:
132
		setIcon(promptColIdx, QIcon());
133 134 135 136 137 138 139
		goto set_prompt;
	default:
		;
	}
	if (!sym)
		goto set_prompt;

140
	setText(nameColIdx, sym->name);
141 142 143 144 145 146 147

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

148
		if (!sym_is_changeable(sym) && list->optMode == normalOpt) {
149
			setIcon(promptColIdx, QIcon());
150 151 152
			setText(noColIdx, QString());
			setText(modColIdx, QString());
			setText(yesColIdx, QString());
153 154 155 156 157 158
			break;
		}
		expr = sym_get_tristate_value(sym);
		switch (expr) {
		case yes:
			if (sym_is_choice_value(sym) && type == S_BOOLEAN)
159
				setIcon(promptColIdx, choiceYesIcon);
160
			else
161
				setIcon(promptColIdx, symbolYesIcon);
162 163 164 165
			setText(yesColIdx, "Y");
			ch = 'Y';
			break;
		case mod:
166
			setIcon(promptColIdx, symbolModIcon);
167 168 169 170 171
			setText(modColIdx, "M");
			ch = 'M';
			break;
		default:
			if (sym_is_choice_value(sym) && type == S_BOOLEAN)
172
				setIcon(promptColIdx, choiceNoIcon);
173
			else
174
				setIcon(promptColIdx, symbolNoIcon);
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
			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)
203
		prompt += " (NEW)";
204 205
set_prompt:
	setText(promptColIdx, prompt);
206 207 208 209
}

void ConfigItem::testUpdateMenu(bool v)
{
210 211 212 213 214 215 216 217 218 219 220 221 222 223
	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();
224 225 226
}


227 228 229 230 231
/*
 * construct a menu entry
 */
void ConfigItem::init(void)
{
232 233 234 235 236 237 238 239 240 241
	if (menu) {
		ConfigList* list = listView();
		nextItem = (ConfigItem*)menu->data;
		menu->data = this;

		if (list->mode != fullMode)
			setExpanded(true);
		sym_calc_value(menu->sym);
	}
	updateMenu();
242 243 244 245 246 247 248
}

/*
 * destruct a menu entry
 */
ConfigItem::~ConfigItem(void)
{
249 250 251 252 253 254 255 256 257
	if (menu) {
		ConfigItem** ip = (ConfigItem**)&menu->data;
		for (; *ip; ip = &(*ip)->nextItem) {
			if (*ip == this) {
				*ip = nextItem;
				break;
			}
		}
	}
258 259
}

260 261 262
ConfigLineEdit::ConfigLineEdit(ConfigView* parent)
	: Parent(parent)
{
263
	connect(this, SIGNAL(editingFinished()), SLOT(hide()));
264 265
}

266
void ConfigLineEdit::show(ConfigItem* i)
L
Linus Torvalds 已提交
267 268
{
	item = i;
269
	if (sym_get_string_value(item->menu->sym))
270
		setText(sym_get_string_value(item->menu->sym));
271
	else
272
		setText(QString());
L
Linus Torvalds 已提交
273 274 275 276 277 278 279
	Parent::show();
	setFocus();
}

void ConfigLineEdit::keyPressEvent(QKeyEvent* e)
{
	switch (e->key()) {
280
	case Qt::Key_Escape:
L
Linus Torvalds 已提交
281
		break;
282 283
	case Qt::Key_Return:
	case Qt::Key_Enter:
284
		sym_set_string_value(item->menu->sym, text().toLatin1());
285
		parent()->updateList();
L
Linus Torvalds 已提交
286 287 288 289 290 291 292 293 294 295
		break;
	default:
		Parent::keyPressEvent(e);
		return;
	}
	e->accept();
	parent()->list->setFocus();
	hide();
}

296
ConfigList::ConfigList(ConfigView* p, const char *name)
297 298
	: Parent(p),
	  updateAll(false),
299
	  showName(false), showRange(false), showData(false), mode(singleMode), optMode(normalOpt),
300 301
	  rootEntry(0), headerPopup(0)
{
302
	setObjectName(name);
303
	setSortingEnabled(false);
304 305
	setRootIsDecorated(true);

306 307 308
	setVerticalScrollMode(ScrollPerPixel);
	setHorizontalScrollMode(ScrollPerPixel);

309
	setHeaderLabels(QStringList() << "Option" << "Name" << "N" << "M" << "Y" << "Value");
310

311
	connect(this, SIGNAL(itemSelectionChanged(void)),
312 313 314 315 316 317 318 319 320 321 322 323
		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()));
	}

324
	showColumn(promptColIdx);
325 326 327 328 329 330 331 332 333 334 335 336 337

	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;
338 339 340 341
}

void ConfigList::reinit(void)
{
342 343 344 345 346
	hideColumn(dataColIdx);
	hideColumn(yesColIdx);
	hideColumn(modColIdx);
	hideColumn(noColIdx);
	hideColumn(nameColIdx);
347 348

	if (showName)
349
		showColumn(nameColIdx);
350
	if (showRange) {
351 352 353
		showColumn(noColIdx);
		showColumn(modColIdx);
		showColumn(yesColIdx);
354 355
	}
	if (showData)
356
		showColumn(dataColIdx);
357 358

	updateListAll();
359 360
}

361 362 363 364 365 366 367 368 369 370 371 372
void ConfigList::setOptionMode(QAction *action)
{
	if (action == showNormalAction)
		optMode = normalOpt;
	else if (action == showAllAction)
		optMode = allOpt;
	else
		optMode = promptOpt;

	updateListAll();
}

373 374
void ConfigList::saveSettings(void)
{
375 376 377 378 379 380 381 382
	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();
	}
383 384 385 386
}

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

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

	return item;
395 396 397 398
}

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

B
Boris Barbulovski 已提交
402 403 404
	if (selectedItems().count() == 0)
		return;

405 406 407 408 409 410 411 412 413 414 415
	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);
416 417
}

418
void ConfigList::updateList()
419
{
420
	ConfigItem* last = 0;
421
	ConfigItem *item;
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440

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

		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))) {
441
		item = (ConfigItem *)topLevelItem(0);
442
		if (!item)
443
			item = new ConfigItem(this, 0, true);
444
		last = item;
445 446 447
	}
	if ((mode == singleMode || (mode == symbolMode && !(rootEntry->flags & MENU_ROOT))) &&
	    rootEntry->sym && rootEntry->prompt) {
448
		item = last ? last->nextSibling() : nullptr;
449 450 451 452 453 454 455
		if (!item)
			item = new ConfigItem(this, last, rootEntry, true);
		else
			item->testUpdateMenu(true);

		updateMenuList(item, rootEntry);
		update();
456
		resizeColumnToContents(0);
457 458 459
		return;
	}
update:
460
	updateMenuList(rootEntry);
461
	update();
462
	resizeColumnToContents(0);
463 464 465 466
}

void ConfigList::setValue(ConfigItem* item, tristate val)
{
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
	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);
485
		parent()->updateList();
486 487
		break;
	}
488 489 490 491
}

void ConfigList::changeValue(ConfigItem* item)
{
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
	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)
519
			parent()->updateList();
520 521 522 523
		break;
	case S_INT:
	case S_HEX:
	case S_STRING:
524
		parent()->lineEdit->show(item);
525 526
		break;
	}
527 528 529 530
}

void ConfigList::setRootMenu(struct menu *menu)
{
531 532 533 534 535 536 537
	enum prop_type type;

	if (rootEntry == menu)
		return;
	type = menu && menu->prompt ? menu->prompt->type : P_UNKNOWN;
	if (type != P_MENU)
		return;
538
	updateMenuList(0);
539 540 541
	rootEntry = menu;
	updateListAll();
	if (currentItem()) {
542
		setSelected(currentItem(), hasFocus());
543 544
		scrollToItem(currentItem());
	}
545 546 547 548
}

void ConfigList::setParentMenu(void)
{
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
	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;
	}
568 569 570 571 572 573 574 575 576
}

/*
 * 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
 */
577
void ConfigList::updateMenuList(ConfigItem *parent, struct menu* menu)
578
{
579 580 581 582 583 584 585
	struct menu* child;
	ConfigItem* item;
	ConfigItem* last;
	bool visible;
	enum prop_type type;

	if (!menu) {
586 587 588 589 590
		while (parent->childCount() > 0)
		{
			delete parent->takeChild(0);
		}

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 621 622 623 624 625 626 627 628 629
		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;
		}
630
hide:
631 632 633 634 635 636 637 638 639
		if (item && item->menu == child) {
			last = parent->firstChild();
			if (last == item)
				last = 0;
			else while (last->nextSibling() != item)
				last = last->nextSibling();
			delete item;
		}
	}
640 641
}

642
void ConfigList::updateMenuList(struct menu *menu)
643 644 645 646 647 648 649 650
{
	struct menu* child;
	ConfigItem* item;
	ConfigItem* last;
	bool visible;
	enum prop_type type;

	if (!menu) {
651
		while (topLevelItemCount() > 0)
652
		{
653
			delete takeTopLevelItem(0);
654 655 656 657 658
		}

		return;
	}

659
	last = (ConfigItem *)topLevelItem(0);
660 661 662
	if (last && !last->goParent)
		last = 0;
	for (child = menu->list; child; child = child->next) {
663
		item = last ? last->nextSibling() : (ConfigItem *)topLevelItem(0);
664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
		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)
684
				item = new ConfigItem(this, last, child, visible);
685 686 687 688 689 690 691 692 693 694
			else
				item->testUpdateMenu(visible);

			if (mode == fullMode || mode == menuMode || type != P_MENU)
				updateMenuList(item, child);
			else
				updateMenuList(item, 0);
			last = item;
			continue;
		}
695
hide:
696
		if (item && item->menu == child) {
697
			last = (ConfigItem *)topLevelItem(0);
698 699 700 701 702 703 704 705 706
			if (last == item)
				last = 0;
			else while (last->nextSibling() != item)
				last = last->nextSibling();
			delete item;
		}
	}
}

707 708
void ConfigList::keyPressEvent(QKeyEvent* ev)
{
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
	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) {
739 740 741 742
			if (mode == menuMode)
				emit menuSelected(menu);
			else
				emit itemSelected(menu);
743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761
			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();
762 763
}

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

771
void ConfigList::mouseReleaseEvent(QMouseEvent* e)
772
{
773 774 775 776 777 778 779 780 781 782 783 784
	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();
785
	idx = header()->logicalIndexAt(x);
786 787
	switch (idx) {
	case promptColIdx:
788
		icon = item->icon(promptColIdx);
789 790 791 792 793 794 795 796 797 798
		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 &&
799 800
				    mode != fullMode && mode != menuMode &&
                                    mode != listMode)
801 802 803 804 805
					emit menuSelected(menu);
				else
					changeValue(item);
			}
		}
806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823
		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);
824 825
}

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

833
void ConfigList::mouseDoubleClickEvent(QMouseEvent* e)
834
{
835
	QPoint p = e->pos();
836 837 838 839 840 841 842 843 844 845 846 847 848 849
	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;
850
	if (ptype == P_MENU && mode != listMode) {
851 852 853 854 855
		if (mode == singleMode)
			emit itemSelected(menu);
		else if (mode == symbolMode)
			emit menuSelected(menu);
	} else if (menu->sym)
856 857 858 859 860
		changeValue(item);

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

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

	Parent::focusInEvent(e);

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

void ConfigList::contextMenuEvent(QContextMenuEvent *e)
{
879 880 881 882 883 884 885 886 887
	if (!headerPopup) {
		QAction *action;

		headerPopup = new QMenu(this);
		action = new QAction("Show Name", this);
		action->setCheckable(true);
		connect(action, SIGNAL(toggled(bool)),
			parent(), SLOT(setShowName(bool)));
		connect(parent(), SIGNAL(showNameChanged(bool)),
888
			action, SLOT(setChecked(bool)));
889 890 891 892 893 894 895 896
		action->setChecked(showName);
		headerPopup->addAction(action);

		action = new QAction("Show Range", this);
		action->setCheckable(true);
		connect(action, SIGNAL(toggled(bool)),
			parent(), SLOT(setShowRange(bool)));
		connect(parent(), SIGNAL(showRangeChanged(bool)),
897
			action, SLOT(setChecked(bool)));
898 899 900 901 902 903 904 905
		action->setChecked(showRange);
		headerPopup->addAction(action);

		action = new QAction("Show Data", this);
		action->setCheckable(true);
		connect(action, SIGNAL(toggled(bool)),
			parent(), SLOT(setShowData(bool)));
		connect(parent(), SIGNAL(showDataChanged(bool)),
906
			action, SLOT(setChecked(bool)));
907 908 909 910 911 912
		action->setChecked(showData);
		headerPopup->addAction(action);
	}

	headerPopup->exec(e->globalPos());
	e->accept();
913 914
}

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

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

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

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

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

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

949 950
void ConfigView::setShowName(bool b)
{
951 952 953 954 955
	if (list->showName != b) {
		list->showName = b;
		list->reinit();
		emit showNameChanged(b);
	}
956 957 958 959
}

void ConfigView::setShowRange(bool b)
{
960 961 962 963 964
	if (list->showRange != b) {
		list->showRange = b;
		list->reinit();
		emit showRangeChanged(b);
	}
965 966 967 968
}

void ConfigView::setShowData(bool b)
{
969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984
	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;
	}
985 986
}

987
void ConfigView::updateList()
L
Linus Torvalds 已提交
988
{
989 990 991
	ConfigView* v;

	for (v = viewList; v; v = v->nextView)
992
		v->list->updateList();
L
Linus Torvalds 已提交
993 994 995 996
}

void ConfigView::updateListAll(void)
{
997 998 999 1000
	ConfigView* v;

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

1003
ConfigInfoView::ConfigInfoView(QWidget* parent, const char *name)
1004
	: Parent(parent), sym(0), _menu(0)
1005
{
1006
	setObjectName(name);
1007
	setOpenLinks(false);
1008 1009 1010

	if (!objectName().isEmpty()) {
		configSettings->beginGroup(objectName());
1011
		setShowDebug(configSettings->value("/showDebug", false).toBool());
1012 1013 1014
		configSettings->endGroup();
		connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings()));
	}
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024

	contextMenu = createStandardContextMenu();
	QAction *action = new QAction("Show Debug Info", contextMenu);

	action->setCheckable(true);
	connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool)));
	connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setChecked(bool)));
	action->setChecked(showDebug());
	contextMenu->addSeparator();
	contextMenu->addAction(action);
1025 1026 1027 1028
}

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

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

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

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

1076 1077 1078
void ConfigInfoView::menuInfo(void)
{
	struct symbol* sym;
1079 1080
	QString info;
	QTextStream stream(&info);
1081

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

		if (showDebug())
1109 1110
			stream << debug_info(sym);

1111 1112 1113 1114 1115
		struct gstr help_gstr = str_new();

		menu_get_ext_help(_menu, &help_gstr);
		stream << print_filter(str_get(&help_gstr));
		str_free(&help_gstr);
A
Alexander Stein 已提交
1116
	} else if (_menu->prompt) {
1117 1118 1119
		stream << "<big><b>";
		stream << print_filter(_menu->prompt->text);
		stream << "</b></big><br><br>";
1120
		if (showDebug()) {
A
Alexander Stein 已提交
1121
			if (_menu->prompt->visible.expr) {
1122 1123 1124 1125
				stream << "&nbsp;&nbsp;dep: ";
				expr_print(_menu->prompt->visible.expr,
					   expr_print_help, &stream, E_NONE);
				stream << "<br><br>";
1126
			}
1127 1128 1129

			stream << "defined at " << _menu->file->name << ":"
			       << _menu->lineno << "<br><br>";
1130 1131 1132
		}
	}

1133
	setText(info);
1134 1135 1136 1137 1138
}

QString ConfigInfoView::debug_info(struct symbol *sym)
{
	QString debug;
1139
	QTextStream stream(&debug);
1140

1141 1142
	stream << "type: ";
	stream << print_filter(sym_type_name(sym->type));
1143
	if (sym_is_choice(sym))
1144
		stream << " (choice)";
1145 1146
	debug += "<br>";
	if (sym->rev_dep.expr) {
1147 1148 1149
		stream << "reverse dep: ";
		expr_print(sym->rev_dep.expr, expr_print_help, &stream, E_NONE);
		stream << "<br>";
1150 1151 1152 1153 1154
	}
	for (struct property *prop = sym->prop; prop; prop = prop->next) {
		switch (prop->type) {
		case P_PROMPT:
		case P_MENU:
1155 1156 1157
			stream << "prompt: <a href=\"m" << sym->name << "\">";
			stream << print_filter(prop->text);
			stream << "</a><br>";
1158 1159
			break;
		case P_DEFAULT:
1160 1161
		case P_SELECT:
		case P_RANGE:
1162 1163 1164
		case P_COMMENT:
		case P_IMPLY:
		case P_SYMBOL:
1165 1166 1167 1168 1169
			stream << prop_get_type_name(prop->type);
			stream << ": ";
			expr_print(prop->expr, expr_print_help,
				   &stream, E_NONE);
			stream << "<br>";
1170 1171 1172
			break;
		case P_CHOICE:
			if (sym_is_choice(sym)) {
1173 1174 1175 1176
				stream << "choice: ";
				expr_print(prop->expr, expr_print_help,
					   &stream, E_NONE);
				stream << "<br>";
1177 1178 1179
			}
			break;
		default:
1180 1181 1182
			stream << "unknown property: ";
			stream << prop_get_type_name(prop->type);
			stream << "<br>";
1183 1184
		}
		if (prop->visible.expr) {
1185 1186 1187 1188
			stream << "&nbsp;&nbsp;&nbsp;&nbsp;dep: ";
			expr_print(prop->visible.expr, expr_print_help,
				   &stream, E_NONE);
			stream << "<br>";
1189 1190
		}
	}
1191
	stream << "<br>";
1192 1193 1194 1195 1196 1197 1198 1199

	return debug;
}

QString ConfigInfoView::print_filter(const QString &str)
{
	QRegExp re("[<>&\"\\n]");
	QString res = str;
1200 1201
	for (int i = 0; (i = res.indexOf(re, i)) >= 0;) {
		switch (res[i].toLatin1()) {
1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226
		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;
}

1227
void ConfigInfoView::expr_print_help(void *data, struct symbol *sym, const char *str)
1228
{
1229
	QTextStream *stream = reinterpret_cast<QTextStream *>(data);
1230 1231

	if (sym && sym->name && !(sym->flags & SYMBOL_CONST)) {
1232 1233 1234 1235 1236 1237
		*stream << "<a href=\"s" << sym->name << "\">";
		*stream << print_filter(str);
		*stream << "</a>";
	} else {
		*stream << print_filter(str);
	}
1238 1239
}

1240 1241 1242 1243 1244 1245 1246 1247 1248
void ConfigInfoView::clicked(const QUrl &url)
{
	QByteArray str = url.toEncoded();
	const std::size_t count = str.size();
	char *data = new char[count + 1];
	struct symbol **result;
	struct menu *m = NULL;

	if (count < 1) {
1249
		delete[] data;
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260
		return;
	}

	memcpy(data, str.constData(), count);
	data[count] = '\0';

	/* Seek for exact match */
	data[0] = '^';
	strcat(data, "$");
	result = sym_re_search(data);
	if (!result) {
1261
		delete[] data;
1262 1263 1264 1265 1266
		return;
	}

	sym = *result;

1267
	/* Seek for the menu which holds the symbol */
1268 1269 1270 1271 1272 1273 1274 1275
	for (struct property *prop = sym->prop; prop; prop = prop->next) {
		    if (prop->type != P_PROMPT && prop->type != P_MENU)
			    continue;
		    m = prop->menu;
		    break;
	}

	if (!m) {
1276 1277 1278 1279 1280
		/* Symbol is not visible as a menu */
		symbolInfo();
		emit showDebugChanged(true);
	} else {
		emit menuSelected(m);
1281 1282 1283
	}

	free(result);
1284
	delete[] data;
1285 1286
}

1287
void ConfigInfoView::contextMenuEvent(QContextMenuEvent *event)
1288
{
1289 1290
	contextMenu->popup(event->globalPos());
	event->accept();
1291 1292
}

1293
ConfigSearchWindow::ConfigSearchWindow(ConfigMainWindow *parent)
1294
	: Parent(parent), result(NULL)
1295
{
1296
	setObjectName("search");
1297
	setWindowTitle("Search Config");
1298

1299 1300 1301
	QVBoxLayout* layout1 = new QVBoxLayout(this);
	layout1->setContentsMargins(11, 11, 11, 11);
	layout1->setSpacing(6);
1302 1303

	QHBoxLayout* layout2 = new QHBoxLayout();
1304 1305
	layout2->setContentsMargins(0, 0, 0, 0);
	layout2->setSpacing(6);
1306
	layout2->addWidget(new QLabel("Find:", this));
1307 1308 1309
	editField = new QLineEdit(this);
	connect(editField, SIGNAL(returnPressed()), SLOT(search()));
	layout2->addWidget(editField);
1310
	searchButton = new QPushButton("Search", this);
1311
	searchButton->setAutoDefault(false);
1312 1313 1314 1315
	connect(searchButton, SIGNAL(clicked()), SLOT(search()));
	layout2->addWidget(searchButton);
	layout1->addLayout(layout2);

1316
	split = new QSplitter(this);
1317
	split->setOrientation(Qt::Vertical);
1318
	list = new ConfigView(split, "search");
1319
	list->list->mode = listMode;
1320
	info = new ConfigInfoView(split, "search");
1321 1322
	connect(list->list, SIGNAL(menuChanged(struct menu *)),
		info, SLOT(setInfo(struct menu *)));
1323 1324 1325
	connect(list->list, SIGNAL(menuChanged(struct menu *)),
		parent, SLOT(setMenuLink(struct menu *)));

1326
	layout1->addWidget(split);
1327

1328 1329 1330
	QVariant x, y;
	int width, height;
	bool ok;
1331

1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
	configSettings->beginGroup("search");
	width = configSettings->value("/window width", parent->width() / 2).toInt();
	height = configSettings->value("/window height", parent->height() / 2).toInt();
	resize(width, height);
	x = configSettings->value("/window x");
	y = configSettings->value("/window y");
	if (x.isValid() && y.isValid())
		move(x.toInt(), y.toInt());
	QList<int> sizes = configSettings->readSizes("/split", &ok);
	if (ok)
		split->setSizes(sizes);
	configSettings->endGroup();
	connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings()));
1345 1346 1347 1348
}

void ConfigSearchWindow::saveSettings(void)
{
1349 1350 1351 1352 1353 1354 1355 1356 1357
	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();
	}
1358 1359 1360 1361
}

void ConfigSearchWindow::search(void)
{
1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377
	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));
	}
1378 1379
}

L
Linus Torvalds 已提交
1380 1381 1382 1383
/*
 * Construct the complete config widget
 */
ConfigMainWindow::ConfigMainWindow(void)
1384
	: searchWindow(0)
L
Linus Torvalds 已提交
1385
{
1386
	bool ok = true;
1387 1388
	QVariant x, y;
	int width, height;
R
Randy Dunlap 已提交
1389
	char title[256];
L
Linus Torvalds 已提交
1390

1391
	QDesktopWidget *d = configApp->desktop();
1392 1393
	snprintf(title, sizeof(title), "%s%s",
		rootmenu.prompt->text,
1394 1395
		""
		);
1396
	setWindowTitle(title);
L
Linus Torvalds 已提交
1397

1398 1399
	width = configSettings->value("/window width", d->width() - 64).toInt();
	height = configSettings->value("/window height", d->height() - 64).toInt();
L
Linus Torvalds 已提交
1400
	resize(width, height);
1401 1402 1403 1404
	x = configSettings->value("/window x");
	y = configSettings->value("/window y");
	if ((x.isValid())&&(y.isValid()))
		move(x.toInt(), y.toInt());
L
Linus Torvalds 已提交
1405

1406 1407 1408 1409 1410 1411 1412 1413 1414
	// set up icons
	ConfigItem::symbolYesIcon = QIcon(QPixmap(xpm_symbol_yes));
	ConfigItem::symbolModIcon = QIcon(QPixmap(xpm_symbol_mod));
	ConfigItem::symbolNoIcon = QIcon(QPixmap(xpm_symbol_no));
	ConfigItem::choiceYesIcon = QIcon(QPixmap(xpm_choice_yes));
	ConfigItem::choiceNoIcon = QIcon(QPixmap(xpm_choice_no));
	ConfigItem::menuIcon = QIcon(QPixmap(xpm_menu));
	ConfigItem::menubackIcon = QIcon(QPixmap(xpm_menuback));

1415 1416 1417 1418 1419
	QWidget *widget = new QWidget(this);
	QVBoxLayout *layout = new QVBoxLayout(widget);
	setCentralWidget(widget);

	split1 = new QSplitter(widget);
1420
	split1->setOrientation(Qt::Horizontal);
1421
	split1->setChildrenCollapsible(false);
L
Linus Torvalds 已提交
1422

1423
	menuView = new ConfigView(widget, "menu");
L
Linus Torvalds 已提交
1424 1425
	menuList = menuView->list;

1426 1427
	split2 = new QSplitter(widget);
	split2->setChildrenCollapsible(false);
1428
	split2->setOrientation(Qt::Vertical);
L
Linus Torvalds 已提交
1429 1430

	// create config tree
1431
	configView = new ConfigView(widget, "config");
L
Linus Torvalds 已提交
1432 1433
	configList = configView->list;

1434 1435 1436 1437 1438 1439 1440
	helpText = new ConfigInfoView(widget, "help");

	layout->addWidget(split2);
	split2->addWidget(split1);
	split1->addWidget(configView);
	split1->addWidget(menuView);
	split2->addWidget(helpText);
L
Linus Torvalds 已提交
1441 1442 1443 1444

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

1445
	backAction = new QAction(QPixmap(xpm_back), "Back", this);
1446 1447
	connect(backAction, SIGNAL(triggered(bool)), SLOT(goBack()));

1448
	QAction *quitAction = new QAction("&Quit", this);
1449
	quitAction->setShortcut(Qt::CTRL + Qt::Key_Q);
1450 1451
	connect(quitAction, SIGNAL(triggered(bool)), SLOT(close()));

1452
	QAction *loadAction = new QAction(QPixmap(xpm_load), "&Load", this);
1453
	loadAction->setShortcut(Qt::CTRL + Qt::Key_L);
1454 1455
	connect(loadAction, SIGNAL(triggered(bool)), SLOT(loadConfig()));

1456
	saveAction = new QAction(QPixmap(xpm_save), "&Save", this);
1457
	saveAction->setShortcut(Qt::CTRL + Qt::Key_S);
1458 1459
	connect(saveAction, SIGNAL(triggered(bool)), SLOT(saveConfig()));

1460
	conf_set_changed_callback(conf_changed);
1461

1462 1463
	// Set saveAction's initial state
	conf_changed();
1464 1465
	configname = xstrdup(conf_get_configname());

1466
	QAction *saveAsAction = new QAction("Save &As...", this);
1467
	  connect(saveAsAction, SIGNAL(triggered(bool)), SLOT(saveConfigAs()));
1468
	QAction *searchAction = new QAction("&Find", this);
1469
	searchAction->setShortcut(Qt::CTRL + Qt::Key_F);
1470
	  connect(searchAction, SIGNAL(triggered(bool)), SLOT(searchConfig()));
1471
	singleViewAction = new QAction(QPixmap(xpm_single_view), "Single View", this);
1472
	singleViewAction->setCheckable(true);
1473
	  connect(singleViewAction, SIGNAL(triggered(bool)), SLOT(showSingleView()));
1474
	splitViewAction = new QAction(QPixmap(xpm_split_view), "Split View", this);
1475
	splitViewAction->setCheckable(true);
1476
	  connect(splitViewAction, SIGNAL(triggered(bool)), SLOT(showSplitView()));
1477
	fullViewAction = new QAction(QPixmap(xpm_tree_view), "Full View", this);
1478
	fullViewAction->setCheckable(true);
1479
	  connect(fullViewAction, SIGNAL(triggered(bool)), SLOT(showFullView()));
L
Linus Torvalds 已提交
1480

1481
	QAction *showNameAction = new QAction("Show Name", this);
1482
	  showNameAction->setCheckable(true);
1483
	  connect(showNameAction, SIGNAL(toggled(bool)), configView, SLOT(setShowName(bool)));
1484
	  showNameAction->setChecked(configView->showName());
1485
	QAction *showRangeAction = new QAction("Show Range", this);
1486
	  showRangeAction->setCheckable(true);
1487
	  connect(showRangeAction, SIGNAL(toggled(bool)), configView, SLOT(setShowRange(bool)));
1488
	QAction *showDataAction = new QAction("Show Data", this);
1489
	  showDataAction->setCheckable(true);
1490
	  connect(showDataAction, SIGNAL(toggled(bool)), configView, SLOT(setShowData(bool)));
1491 1492

	QActionGroup *optGroup = new QActionGroup(this);
1493
	optGroup->setExclusive(true);
1494
	connect(optGroup, SIGNAL(triggered(QAction*)), configList,
1495
		SLOT(setOptionMode(QAction *)));
1496
	connect(optGroup, SIGNAL(triggered(QAction *)), menuList,
1497 1498
		SLOT(setOptionMode(QAction *)));

1499 1500 1501 1502 1503 1504
	ConfigList::showNormalAction = new QAction("Show Normal Options", optGroup);
	ConfigList::showNormalAction->setCheckable(true);
	ConfigList::showAllAction = new QAction("Show All Options", optGroup);
	ConfigList::showAllAction->setCheckable(true);
	ConfigList::showPromptAction = new QAction("Show Prompt Options", optGroup);
	ConfigList::showPromptAction->setCheckable(true);
1505

1506
	QAction *showDebugAction = new QAction("Show Debug Info", this);
1507
	  showDebugAction->setCheckable(true);
1508
	  connect(showDebugAction, SIGNAL(toggled(bool)), helpText, SLOT(setShowDebug(bool)));
1509
	  showDebugAction->setChecked(helpText->showDebug());
L
Linus Torvalds 已提交
1510

1511
	QAction *showIntroAction = new QAction("Introduction", this);
1512
	  connect(showIntroAction, SIGNAL(triggered(bool)), SLOT(showIntro()));
1513
	QAction *showAboutAction = new QAction("About", this);
1514
	  connect(showAboutAction, SIGNAL(triggered(bool)), SLOT(showAbout()));
L
Linus Torvalds 已提交
1515 1516

	// init tool bar
1517
	QToolBar *toolBar = addToolBar("Tools");
1518
	toolBar->addAction(backAction);
L
Linus Torvalds 已提交
1519
	toolBar->addSeparator();
1520 1521
	toolBar->addAction(loadAction);
	toolBar->addAction(saveAction);
L
Linus Torvalds 已提交
1522
	toolBar->addSeparator();
1523 1524 1525
	toolBar->addAction(singleViewAction);
	toolBar->addAction(splitViewAction);
	toolBar->addAction(fullViewAction);
L
Linus Torvalds 已提交
1526

1527 1528 1529 1530 1531 1532 1533
	// create file menu
	QMenu *menu = menuBar()->addMenu("&File");
	menu->addAction(loadAction);
	menu->addAction(saveAction);
	menu->addAction(saveAsAction);
	menu->addSeparator();
	menu->addAction(quitAction);
L
Linus Torvalds 已提交
1534

1535
	// create edit menu
1536 1537
	menu = menuBar()->addMenu("&Edit");
	menu->addAction(searchAction);
1538

L
Linus Torvalds 已提交
1539
	// create options menu
1540 1541 1542 1543 1544 1545 1546 1547
	menu = menuBar()->addMenu("&Option");
	menu->addAction(showNameAction);
	menu->addAction(showRangeAction);
	menu->addAction(showDataAction);
	menu->addSeparator();
	menu->addActions(optGroup->actions());
	menu->addSeparator();
	menu->addAction(showDebugAction);
L
Linus Torvalds 已提交
1548 1549

	// create help menu
1550 1551 1552
	menu = menuBar()->addMenu("&Help");
	menu->addAction(showIntroAction);
	menu->addAction(showAboutAction);
L
Linus Torvalds 已提交
1553

1554 1555 1556
	connect (helpText, SIGNAL (anchorClicked (const QUrl &)),
		 helpText, SLOT (clicked (const QUrl &)) );

1557 1558 1559 1560
	connect(configList, SIGNAL(menuChanged(struct menu *)),
		helpText, SLOT(setInfo(struct menu *)));
	connect(configList, SIGNAL(menuSelected(struct menu *)),
		SLOT(changeMenu(struct menu *)));
1561 1562
	connect(configList, SIGNAL(itemSelected(struct menu *)),
		SLOT(changeItens(struct menu *)));
1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575
	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)));
1576 1577
	connect(helpText, SIGNAL(menuSelected(struct menu *)),
		SLOT(setMenuLink(struct menu *)));
L
Linus Torvalds 已提交
1578

1579
	QString listMode = configSettings->value("/listMode", "symbol").toString();
L
Linus Torvalds 已提交
1580 1581 1582 1583 1584 1585 1586 1587
	if (listMode == "single")
		showSingleView();
	else if (listMode == "full")
		showFullView();
	else /*if (listMode == "split")*/
		showSplitView();

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

1592
	sizes = configSettings->readSizes("/split2", &ok);
L
Linus Torvalds 已提交
1593 1594 1595 1596 1597 1598
	if (ok)
		split2->setSizes(sizes);
}

void ConfigMainWindow::loadConfig(void)
{
1599 1600 1601 1602 1603 1604
	QString str;
	QByteArray ba;
	const char *name;

	str = QFileDialog::getOpenFileName(this, "", configname);
	if (str.isNull())
L
Linus Torvalds 已提交
1605
		return;
1606 1607 1608 1609 1610

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

	if (conf_read(name))
1611
		QMessageBox::information(this, "qconf", "Unable to load configuration!");
1612 1613 1614 1615

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

L
Linus Torvalds 已提交
1616 1617 1618
	ConfigView::updateListAll();
}

1619
bool ConfigMainWindow::saveConfig(void)
L
Linus Torvalds 已提交
1620
{
1621
	if (conf_write(configname)) {
1622
		QMessageBox::information(this, "qconf", "Unable to save configuration!");
1623 1624
		return false;
	}
1625 1626
	conf_write_autoconf(0);

1627
	return true;
L
Linus Torvalds 已提交
1628 1629 1630 1631
}

void ConfigMainWindow::saveConfigAs(void)
{
1632 1633 1634 1635 1636 1637
	QString str;
	QByteArray ba;
	const char *name;

	str = QFileDialog::getSaveFileName(this, "", configname);
	if (str.isNull())
L
Linus Torvalds 已提交
1638
		return;
1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649

	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 已提交
1650 1651
}

1652 1653 1654
void ConfigMainWindow::searchConfig(void)
{
	if (!searchWindow)
1655
		searchWindow = new ConfigSearchWindow(this);
1656 1657 1658
	searchWindow->show();
}

1659
void ConfigMainWindow::changeItens(struct menu *menu)
L
Linus Torvalds 已提交
1660
{
1661
	configList->setRootMenu(menu);
L
Linus Torvalds 已提交
1662 1663
}

1664 1665 1666 1667 1668
void ConfigMainWindow::changeMenu(struct menu *menu)
{
	menuList->setRootMenu(menu);
}

1669
void ConfigMainWindow::setMenuLink(struct menu *menu)
L
Linus Torvalds 已提交
1670
{
1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685
	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;
1686
	case menuMode:
1687
		if (menu->flags & MENU_ROOT) {
1688
			menuList->setRootMenu(menu);
1689 1690
			configList->clearSelection();
			list = configList;
1691
		} else {
1692 1693 1694
			parent = menu_get_parent_menu(menu->parent);
			if (!parent)
				return;
1695 1696 1697

			/* Select the config view */
			item = configList->findConfigItem(parent);
1698
			if (item) {
1699
				configList->setSelected(item, true);
1700
				configList->scrollToItem(item);
1701
			}
1702 1703 1704 1705

			menuList->setRootMenu(parent);
			menuList->clearSelection();
			list = menuList;
1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717
		}
		break;
	case fullMode:
		list = configList;
		break;
	default:
		break;
	}

	if (list) {
		item = list->findConfigItem(menu);
		if (item) {
1718
			list->setSelected(item, true);
1719 1720
			list->scrollToItem(item);
			list->setFocus();
1721
			helpText->setInfo(menu);
1722 1723
		}
	}
L
Linus Torvalds 已提交
1724 1725
}

1726 1727
void ConfigMainWindow::listFocusChanged(void)
{
1728 1729
	if (menuList->mode == menuMode)
		configList->clearSelection();
1730 1731
}

L
Linus Torvalds 已提交
1732 1733
void ConfigMainWindow::goBack(void)
{
1734
	if (configList->rootEntry == &rootmenu)
B
Boris Barbulovski 已提交
1735 1736
		return;

1737
	configList->setParentMenu();
L
Linus Torvalds 已提交
1738 1739 1740 1741
}

void ConfigMainWindow::showSingleView(void)
{
1742 1743 1744 1745 1746 1747 1748
	singleViewAction->setEnabled(false);
	singleViewAction->setChecked(true);
	splitViewAction->setEnabled(true);
	splitViewAction->setChecked(false);
	fullViewAction->setEnabled(true);
	fullViewAction->setChecked(false);

1749 1750
	backAction->setEnabled(true);

L
Linus Torvalds 已提交
1751
	menuView->hide();
1752 1753 1754 1755 1756 1757
	menuList->setRootMenu(0);
	configList->mode = singleMode;
	if (configList->rootEntry == &rootmenu)
		configList->updateListAll();
	else
		configList->setRootMenu(&rootmenu);
L
Linus Torvalds 已提交
1758 1759 1760 1761 1762
	configList->setFocus();
}

void ConfigMainWindow::showSplitView(void)
{
1763 1764 1765 1766 1767 1768 1769
	singleViewAction->setEnabled(true);
	singleViewAction->setChecked(false);
	splitViewAction->setEnabled(false);
	splitViewAction->setChecked(true);
	fullViewAction->setEnabled(true);
	fullViewAction->setChecked(false);

1770 1771
	backAction->setEnabled(false);

1772
	configList->mode = menuMode;
1773 1774 1775 1776 1777 1778
	if (configList->rootEntry == &rootmenu)
		configList->updateListAll();
	else
		configList->setRootMenu(&rootmenu);
	configList->setAllOpen(true);
	configApp->processEvents();
1779
	menuList->mode = symbolMode;
1780 1781
	menuList->setRootMenu(&rootmenu);
	menuList->setAllOpen(true);
L
Linus Torvalds 已提交
1782 1783 1784 1785 1786 1787
	menuView->show();
	menuList->setFocus();
}

void ConfigMainWindow::showFullView(void)
{
1788 1789 1790 1791 1792 1793 1794
	singleViewAction->setEnabled(true);
	singleViewAction->setChecked(false);
	splitViewAction->setEnabled(true);
	splitViewAction->setChecked(false);
	fullViewAction->setEnabled(false);
	fullViewAction->setChecked(true);

1795 1796
	backAction->setEnabled(false);

L
Linus Torvalds 已提交
1797
	menuView->hide();
1798 1799 1800 1801 1802 1803
	menuList->setRootMenu(0);
	configList->mode = fullMode;
	if (configList->rootEntry == &rootmenu)
		configList->updateListAll();
	else
		configList->setRootMenu(&rootmenu);
L
Linus Torvalds 已提交
1804 1805 1806 1807 1808 1809 1810 1811
	configList->setFocus();
}

/*
 * ask for saving configuration before quitting
 */
void ConfigMainWindow::closeEvent(QCloseEvent* e)
{
1812
	if (!conf_get_changed()) {
L
Linus Torvalds 已提交
1813 1814 1815
		e->accept();
		return;
	}
1816
	QMessageBox mb("qconf", "Save configuration?", QMessageBox::Warning,
L
Linus Torvalds 已提交
1817
			QMessageBox::Yes | QMessageBox::Default, QMessageBox::No, QMessageBox::Cancel | QMessageBox::Escape);
1818 1819 1820
	mb.setButtonText(QMessageBox::Yes, "&Save Changes");
	mb.setButtonText(QMessageBox::No, "&Discard Changes");
	mb.setButtonText(QMessageBox::Cancel, "Cancel Exit");
L
Linus Torvalds 已提交
1821 1822
	switch (mb.exec()) {
	case QMessageBox::Yes:
1823 1824 1825 1826 1827
		if (saveConfig())
			e->accept();
		else
			e->ignore();
		break;
L
Linus Torvalds 已提交
1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838
	case QMessageBox::No:
		e->accept();
		break;
	case QMessageBox::Cancel:
		e->ignore();
		break;
	}
}

void ConfigMainWindow::showIntro(void)
{
1839
	static const QString str = "Welcome to the qconf graphical configuration tool.\n\n"
L
Linus Torvalds 已提交
1840 1841 1842 1843 1844 1845 1846 1847 1848
		"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"
1849
		"which you can then match by examining other options.\n\n";
L
Linus Torvalds 已提交
1850 1851 1852 1853 1854 1855

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

void ConfigMainWindow::showAbout(void)
{
1856
	static const QString str = "qconf is Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>.\n"
1857
		"Copyright (C) 2015 Boris Barbulovski <bbarbulovski@gmail.com>.\n\n"
1858
		"Bug reports and feature request can also be entered at http://bugzilla.kernel.org/\n";
L
Linus Torvalds 已提交
1859 1860 1861 1862 1863 1864

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

void ConfigMainWindow::saveSettings(void)
{
1865 1866 1867 1868
	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 已提交
1869 1870

	QString entry;
1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882
	switch(configList->mode) {
	case singleMode :
		entry = "single";
		break;

	case symbolMode :
		entry = "split";
		break;

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

1884 1885 1886
	default:
		break;
	}
1887
	configSettings->setValue("/listMode", entry);
L
Linus Torvalds 已提交
1888

1889 1890
	configSettings->writeSizes("/split1", split1->sizes());
	configSettings->writeSizes("/split2", split2->sizes());
L
Linus Torvalds 已提交
1891 1892
}

1893 1894 1895 1896 1897 1898
void ConfigMainWindow::conf_changed(void)
{
	if (saveAction)
		saveAction->setEnabled(conf_get_changed());
}

L
Linus Torvalds 已提交
1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918
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)
{
1919
	printf("%s [-s] <config>\n", progname);
L
Linus Torvalds 已提交
1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931
	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]) {
1932 1933 1934
		case 's':
			conf_set_message_callback(NULL);
			break;
L
Linus Torvalds 已提交
1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949
		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);

1950 1951
	configSettings = new ConfigSettings();
	configSettings->beginGroup("/kconfig/qconf");
L
Linus Torvalds 已提交
1952 1953 1954 1955 1956
	v = new ConfigMainWindow();

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

1960 1961
	configSettings->endGroup();
	delete configSettings;
1962 1963
	delete v;
	delete configApp;
1964

L
Linus Torvalds 已提交
1965 1966
	return 0;
}