diff options
Diffstat (limited to 'scripts/kconfig/qconf.cc')
-rw-r--r-- | scripts/kconfig/qconf.cc | 109 |
1 files changed, 82 insertions, 27 deletions
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index 425ce5ce2d12..393f3749f330 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc | |||
@@ -381,6 +381,18 @@ void ConfigList::saveSettings(void) | |||
381 | } | 381 | } |
382 | } | 382 | } |
383 | 383 | ||
384 | ConfigItem* ConfigList::findConfigItem(struct menu *menu) | ||
385 | { | ||
386 | ConfigItem* item = (ConfigItem*)menu->data; | ||
387 | |||
388 | for (; item; item = item->nextItem) { | ||
389 | if (this == item->listView()) | ||
390 | break; | ||
391 | } | ||
392 | |||
393 | return item; | ||
394 | } | ||
395 | |||
384 | void ConfigList::updateSelection(void) | 396 | void ConfigList::updateSelection(void) |
385 | { | 397 | { |
386 | struct menu *menu; | 398 | struct menu *menu; |
@@ -524,6 +536,7 @@ void ConfigList::setRootMenu(struct menu *menu) | |||
524 | rootEntry = menu; | 536 | rootEntry = menu; |
525 | updateListAll(); | 537 | updateListAll(); |
526 | setSelected(currentItem(), hasFocus()); | 538 | setSelected(currentItem(), hasFocus()); |
539 | ensureItemVisible(currentItem()); | ||
527 | } | 540 | } |
528 | 541 | ||
529 | void ConfigList::setParentMenu(void) | 542 | void ConfigList::setParentMenu(void) |
@@ -766,14 +779,16 @@ skip: | |||
766 | 779 | ||
767 | void ConfigList::focusInEvent(QFocusEvent *e) | 780 | void ConfigList::focusInEvent(QFocusEvent *e) |
768 | { | 781 | { |
769 | Parent::focusInEvent(e); | 782 | struct menu *menu = NULL; |
770 | 783 | ||
771 | QListViewItem* item = currentItem(); | 784 | Parent::focusInEvent(e); |
772 | if (!item) | ||
773 | return; | ||
774 | 785 | ||
775 | setSelected(item, TRUE); | 786 | ConfigItem* item = (ConfigItem *)currentItem(); |
776 | emit gotFocus(); | 787 | if (item) { |
788 | setSelected(item, TRUE); | ||
789 | menu = item->menu; | ||
790 | } | ||
791 | emit gotFocus(menu); | ||
777 | } | 792 | } |
778 | 793 | ||
779 | void ConfigList::contextMenuEvent(QContextMenuEvent *e) | 794 | void ConfigList::contextMenuEvent(QContextMenuEvent *e) |
@@ -933,6 +948,8 @@ void ConfigInfoView::setShowDebug(bool b) | |||
933 | 948 | ||
934 | void ConfigInfoView::setInfo(struct menu *m) | 949 | void ConfigInfoView::setInfo(struct menu *m) |
935 | { | 950 | { |
951 | if (menu == m) | ||
952 | return; | ||
936 | menu = m; | 953 | menu = m; |
937 | if (!menu) | 954 | if (!menu) |
938 | clear(); | 955 | clear(); |
@@ -954,6 +971,7 @@ void ConfigInfoView::setSource(const QString& name) | |||
954 | if (sscanf(p, "m%p", &m) == 1 && menu != m) { | 971 | if (sscanf(p, "m%p", &m) == 1 && menu != m) { |
955 | menu = m; | 972 | menu = m; |
956 | menuInfo(); | 973 | menuInfo(); |
974 | emit menuSelected(menu); | ||
957 | } | 975 | } |
958 | break; | 976 | break; |
959 | case 's': | 977 | case 's': |
@@ -1380,10 +1398,14 @@ ConfigMainWindow::ConfigMainWindow(void) | |||
1380 | connect(menuList, SIGNAL(menuSelected(struct menu *)), | 1398 | connect(menuList, SIGNAL(menuSelected(struct menu *)), |
1381 | SLOT(changeMenu(struct menu *))); | 1399 | SLOT(changeMenu(struct menu *))); |
1382 | 1400 | ||
1383 | connect(configList, SIGNAL(gotFocus(void)), | 1401 | connect(configList, SIGNAL(gotFocus(struct menu *)), |
1384 | SLOT(listFocusChanged(void))); | 1402 | helpText, SLOT(setInfo(struct menu *))); |
1385 | connect(menuList, SIGNAL(gotFocus(void)), | 1403 | connect(menuList, SIGNAL(gotFocus(struct menu *)), |
1404 | helpText, SLOT(setInfo(struct menu *))); | ||
1405 | connect(menuList, SIGNAL(gotFocus(struct menu *)), | ||
1386 | SLOT(listFocusChanged(void))); | 1406 | SLOT(listFocusChanged(void))); |
1407 | connect(helpText, SIGNAL(menuSelected(struct menu *)), | ||
1408 | SLOT(setMenuLink(struct menu *))); | ||
1387 | 1409 | ||
1388 | QString listMode = configSettings->readEntry("/listMode", "symbol"); | 1410 | QString listMode = configSettings->readEntry("/listMode", "symbol"); |
1389 | if (listMode == "single") | 1411 | if (listMode == "single") |
@@ -1403,18 +1425,6 @@ ConfigMainWindow::ConfigMainWindow(void) | |||
1403 | split2->setSizes(sizes); | 1425 | split2->setSizes(sizes); |
1404 | } | 1426 | } |
1405 | 1427 | ||
1406 | /* | ||
1407 | * display a new help entry as soon as a new menu entry is selected | ||
1408 | */ | ||
1409 | void ConfigMainWindow::setHelp(QListViewItem* item) | ||
1410 | { | ||
1411 | struct menu* menu = 0; | ||
1412 | |||
1413 | if (item) | ||
1414 | menu = ((ConfigItem*)item)->menu; | ||
1415 | helpText->setInfo(menu); | ||
1416 | } | ||
1417 | |||
1418 | void ConfigMainWindow::loadConfig(void) | 1428 | void ConfigMainWindow::loadConfig(void) |
1419 | { | 1429 | { |
1420 | QString s = QFileDialog::getOpenFileName(".config", NULL, this); | 1430 | QString s = QFileDialog::getOpenFileName(".config", NULL, this); |
@@ -1453,17 +1463,62 @@ void ConfigMainWindow::changeMenu(struct menu *menu) | |||
1453 | backAction->setEnabled(TRUE); | 1463 | backAction->setEnabled(TRUE); |
1454 | } | 1464 | } |
1455 | 1465 | ||
1456 | void ConfigMainWindow::listFocusChanged(void) | 1466 | void ConfigMainWindow::setMenuLink(struct menu *menu) |
1457 | { | 1467 | { |
1458 | if (menuList->hasFocus()) { | 1468 | struct menu *parent; |
1459 | if (menuList->mode == menuMode) | 1469 | ConfigList* list = NULL; |
1470 | ConfigItem* item; | ||
1471 | |||
1472 | if (!menu_is_visible(menu) && !configView->showAll()) | ||
1473 | return; | ||
1474 | |||
1475 | switch (configList->mode) { | ||
1476 | case singleMode: | ||
1477 | list = configList; | ||
1478 | parent = menu_get_parent_menu(menu); | ||
1479 | if (!parent) | ||
1480 | return; | ||
1481 | list->setRootMenu(parent); | ||
1482 | break; | ||
1483 | case symbolMode: | ||
1484 | if (menu->flags & MENU_ROOT) { | ||
1485 | configList->setRootMenu(menu); | ||
1460 | configList->clearSelection(); | 1486 | configList->clearSelection(); |
1461 | setHelp(menuList->selectedItem()); | 1487 | list = menuList; |
1462 | } else if (configList->hasFocus()) { | 1488 | } else { |
1463 | setHelp(configList->selectedItem()); | 1489 | list = configList; |
1490 | parent = menu_get_parent_menu(menu->parent); | ||
1491 | if (!parent) | ||
1492 | return; | ||
1493 | item = menuList->findConfigItem(parent); | ||
1494 | if (item) { | ||
1495 | menuList->setSelected(item, TRUE); | ||
1496 | menuList->ensureItemVisible(item); | ||
1497 | } | ||
1498 | list->setRootMenu(parent); | ||
1499 | } | ||
1500 | break; | ||
1501 | case fullMode: | ||
1502 | list = configList; | ||
1503 | break; | ||
1504 | } | ||
1505 | |||
1506 | if (list) { | ||
1507 | item = list->findConfigItem(menu); | ||
1508 | if (item) { | ||
1509 | list->setSelected(item, TRUE); | ||
1510 | list->ensureItemVisible(item); | ||
1511 | list->setFocus(); | ||
1512 | } | ||
1464 | } | 1513 | } |
1465 | } | 1514 | } |
1466 | 1515 | ||
1516 | void ConfigMainWindow::listFocusChanged(void) | ||
1517 | { | ||
1518 | if (menuList->mode == menuMode) | ||
1519 | configList->clearSelection(); | ||
1520 | } | ||
1521 | |||
1467 | void ConfigMainWindow::goBack(void) | 1522 | void ConfigMainWindow::goBack(void) |
1468 | { | 1523 | { |
1469 | ConfigItem* item; | 1524 | ConfigItem* item; |