123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- /*
- * dselect - Debian package maintenance user interface
- * basecmds.cc - base list keyboard commands display
- *
- * Copyright © 1994,1995 Ian Jackson <ijackson@chiark.greenend.org.uk>
- * Copyright © 2000,2001 Wichert Akkerman <wakkerma@debian.org>
- *
- * This is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- #include <config.h>
- #include <compat.h>
- #include <string.h>
- #include <stdio.h>
- #include <dpkg/i18n.h>
- #include <dpkg/dpkg.h>
- #include <dpkg/dpkg-db.h>
- #include "dselect.h"
- #include "helpmsgs.h"
- void baselist::kd_scrollon() {
- topofscreen += list_height;
- if (topofscreen > nitems - list_height) topofscreen= nitems - list_height;
- if (topofscreen < 0) topofscreen= 0;
- if (cursorline < topofscreen)
- setcursor(topofscreen);
- refreshlist();
- }
- void baselist::kd_scrollon1() {
- if (topofscreen >= nitems - list_height) return;
- topofscreen++;
- if (cursorline < topofscreen)
- setcursor(topofscreen);
- refreshlist();
- }
- void baselist::kd_scrollback() {
- topofscreen -= list_height;
- if (topofscreen < 0) topofscreen= 0;
- if (cursorline >= topofscreen + list_height)
- setcursor(topofscreen + list_height - 1);
- refreshlist();
- }
- void baselist::kd_scrollback1() {
- if (topofscreen <= 0) return;
- topofscreen--;
- if (cursorline >= topofscreen + list_height)
- setcursor(topofscreen + list_height - 1);
- refreshlist();
- }
- void baselist::kd_top() {
- topofscreen= 0; setcursor(0);
- }
- void baselist::kd_bottom() {
- topofscreen= nitems - list_height;
- if (topofscreen < 0) topofscreen= 0;
- setcursor(min(topofscreen + list_height - 1, nitems - 1));
- }
- void baselist::kd_redraw() {
- //#define RFSH(x) werase(x); redrawwin(x)
- // RFSH(listpad);
- // RFSH(infopad);
- // RFSH(colheadspad);
- // RFSH(thisstatepad);
- // RFSH(titlewin);
- // RFSH(whatinfowin); /* FIXME: why does ncurses need this? */
- clearok(curscr,TRUE);
- redrawall();
- debug(dbg_general, "baselist[%p]::kd_redraw() done", this);
- }
- void baselist::kd_searchagain() {
- if (!searchstring[0]) { beep(); return; }
- dosearch();
- }
- bool
- baselist::checksearch(char *str)
- {
- return true;
- }
- bool
- baselist::matchsearch(int index)
- {
- int lendiff, searchlen, i;
- const char *name;
- name = itemname(index);
- if (!name)
- return false; /* Skip things without a name (seperators). */
- searchlen=strlen(searchstring);
- lendiff = strlen(name) - searchlen;
- for (i=0; i<=lendiff; i++)
- if (strncasecmp(name + i, searchstring, searchlen) == 0)
- return true;
- return false;
- }
- void baselist::kd_search() {
- char newsearchstring[128];
- strcpy(newsearchstring,searchstring);
- werase(querywin);
- mvwaddstr(querywin,0,0, _("Search for ? "));
- echo(); /* FIXME: ncurses documentation or implementation. */
- if (wgetnstr(querywin,newsearchstring,sizeof(newsearchstring)-1) == ERR)
- searchstring[0]= 0;
- raise(SIGWINCH); /* FIXME: ncurses and xterm arrow keys. */
- noecho(); /* FIXME: ncurses. */
- if (whatinfo_height) { touchwin(whatinfowin); refreshinfo(); }
- else if (info_height) { touchwin(infopad); refreshinfo(); }
- else if (thisstate_height) redrawthisstate();
- else { touchwin(listpad); refreshlist(); }
- if (newsearchstring[0]) {
- if (!checksearch(newsearchstring)) {
- beep();
- return;
- }
- strcpy(searchstring,newsearchstring);
- dosearch();
- } else
- kd_searchagain();
- }
- void
- baselist::displayerror(const char *str)
- {
- const char *pr = _("Error: ");
- int prlen=strlen(pr);
- beep();
- werase(querywin);
- mvwaddstr(querywin,0,0,pr);
- mvwaddstr(querywin,0,prlen,str);
- wgetch(querywin);
- if (whatinfo_height) { touchwin(whatinfowin); refreshinfo(); }
- else if (info_height) { touchwin(infopad); refreshinfo(); }
- else if (thisstate_height) redrawthisstate();
- }
- void baselist::displayhelp(const struct helpmenuentry *helpmenu, int key) {
- int maxx, maxy, i, nextkey;
- getmaxyx(stdscr,maxy,maxx);
- wbkgdset(stdscr, ' ' | part_attr[helpscreen]);
- clearok(stdscr,TRUE);
- for (;;) {
- werase(stdscr);
- const struct helpmenuentry *hme = helpmenu;
- while (hme->key && hme->key != key)
- hme++;
- if (hme->key) {
- int x, y DPKG_ATTR_UNUSED;
- attrset(part_attr[helpscreen]);
- mvaddstr(1,0, gettext(hme->msg->text));
- attrset(part_attr[title]);
- mvaddstr(0,0, _("Help: "));
- addstr(gettext(hme->msg->title));
- getyx(stdscr,y,x);
- while (++x<maxx) addch(' ');
- attrset(part_attr[thisstate]);
- mvaddstr(maxy-1,0,
- _("Press ? for help menu, . for next topic, <space> to exit help."));
- getyx(stdscr,y,x);
- while (++x<maxx) addch(' ');
- move(maxy,maxx);
- attrset(A_NORMAL);
- nextkey= hme[1].key;
- } else {
- mvaddstr(1,1, _("Help information is available under the following topics:"));
- for (i=0, hme=helpmenu; hme->key; hme++,i++) {
- attrset(A_BOLD);
- mvaddch(i+3,3, hme->key);
- attrset(A_NORMAL);
- mvaddstr(i+3,6, gettext(hme->msg->title));
- }
- mvaddstr(i+4,1,
- _("Press a key from the list above, <space> or 'q' to exit help,\n"
- " or '.' (full stop) to read each help page in turn. "));
- nextkey= helpmenu[0].key;
- }
- refresh();
- key= getch();
- if (key == EOF) ohshite(_("error reading keyboard in help"));
- if (key == ' ' || key == 'q') {
- break;
- } else if (key == '?' || key == 'h') {
- key= 0;
- } else if (key == '.') {
- key= nextkey;
- }
- }
- werase(stdscr);
- clearok(stdscr,TRUE);
- wnoutrefresh(stdscr);
- redrawtitle();
- refreshcolheads();
- refreshlist();
- redrawthisstate();
- refreshinfo();
- wnoutrefresh(whatinfowin);
- }
- void baselist::kd_help() {
- displayhelp(helpmenulist(),0);
- }
- void baselist::setcursor(int index) {
- if (listpad && cursorline != -1) {
- redrawitemsrange(cursorline,cursorline+1);
- redraw1itemsel(cursorline,0);
- }
- if (cursorline != index) infotopofscreen= 0;
- cursorline= index;
- if (listpad) {
- redrawitemsrange(cursorline,cursorline+1);
- redraw1itemsel(cursorline,1);
- refreshlist();
- redrawthisstate();
- }
- redrawinfo();
- }
- void baselist::kd_down() {
- int ncursor= cursorline;
- // scroll by one line unless the bottom is already visible
- // or we're in the top half of the screen ...
- if (topofscreen < nitems - list_height &&
- ncursor >= topofscreen + list_height - 3) topofscreen++;
- // move cursor if there are any more ...
- if (cursorline+1 < nitems) ncursor++;
- setcursor(ncursor);
- }
- void baselist::kd_up() {
- int ncursor= cursorline;
- // scroll by one line if there are any lines not shown yet
- // and we're not in the bottom half the screen ...
- if (topofscreen > 0 &&
- ncursor <= topofscreen + 2) topofscreen--;
- // move cursor if there are any to move it to ...
- if (cursorline > 0) ncursor--;
- setcursor(ncursor);
- }
- void baselist::kd_iscrollon() {
- infotopofscreen += info_height;
- if (infotopofscreen > infolines - info_height)
- infotopofscreen= infolines - info_height;
- if (infotopofscreen < 0) infotopofscreen= 0;
- refreshinfo();
- }
- void baselist::kd_iscrollback() {
- infotopofscreen -= info_height;
- if (infotopofscreen < 0) infotopofscreen= 0;
- refreshinfo();
- }
- void baselist::kd_iscrollon1() {
- if (infotopofscreen >= infolines - info_height) return;
- infotopofscreen++; refreshinfo();
- }
- void baselist::kd_iscrollback1() {
- if (infotopofscreen <= 0) return;
- infotopofscreen--; refreshinfo();
- }
- void baselist::kd_panon() {
- leftofscreen += xmax/3;
- if (leftofscreen > total_width - xmax) leftofscreen= total_width - xmax;
- if (leftofscreen < 0) leftofscreen= 0;
- refreshcolheads(); refreshlist(); redrawthisstate(); refreshinfo();
- }
- void baselist::kd_panback() {
- leftofscreen -= xmax/3;
- if (leftofscreen < 0) leftofscreen= 0;
- refreshcolheads(); refreshlist(); redrawthisstate(); refreshinfo();
- }
- void baselist::kd_panon1() {
- leftofscreen++;
- if (leftofscreen > total_width - xmax) leftofscreen= total_width - xmax;
- if (leftofscreen < 0) leftofscreen= 0;
- refreshcolheads(); refreshlist(); redrawthisstate(); refreshinfo();
- }
- void baselist::kd_panback1() {
- leftofscreen--;
- if (leftofscreen < 0) leftofscreen= 0;
- refreshcolheads(); refreshlist(); redrawthisstate(); refreshinfo();
- }
|