1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 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 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
// $Id$
//
// Test resizing with overlapping windows.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <unistd.h>
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif // HAVE_SYS_IOCTL_H
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif // HAVE_SYS_TYPES_H
#ifdef HAVE_STROPTS_H
#include <stropts.h>
#endif // HAVE_STROPTS_H
#ifdef HAVE_TERMIOS_H
#include <termios.h>
#else // HAVE_TERMIOS_H
#ifdef HAVE_SYS_TERMIOS_H
#include <sys/termios.h>
#endif // HAVE_SYS_TERMIOS_H
#endif // HAVE_TERMIOS_H
#include <iostream>
#include <sstream>
#include "yacurs.h"
// Used when preloading libtestpreload.so
#ifdef YACURS_USE_WCHAR
extern "C" int __test_wget_wch(void*, wint_t* i) {
*i = 'q';
return OK;
}
#else
extern "C" int __test_wgetch(void*) { return 'q'; }
#endif
class HotKeyQuit : public YACURS::HotKey {
public:
HotKeyQuit(int k) : HotKey(k) {}
HotKeyQuit(const HotKeyQuit& hk) : HotKey(hk) {}
void action() { YACURS::EventQueue::submit(YACURS::EVT_QUIT); }
HotKey* clone() const { return new HotKeyQuit(*this); }
};
class MyWindow : public YACURS::Window {
private:
YACURS::Window* win;
public:
void show() {
YACURS::Window::show();
win = new YACURS::Window(YACURS::Margin(3, 3, 3, 3));
win->frame(true);
win->add_hotkey(HotKeyQuit('q'));
win->add_hotkey(HotKeyQuit('Q'));
win->show();
}
void close() {
assert(win != 0);
win->close();
delete win;
win = 0;
}
MyWindow(const YACURS::Margin& m) : YACURS::Window(m), win(0) {}
};
int main() {
// test will not be run if stdout or stdin is not a tty.
if (isatty(STDOUT_FILENO) != 1 || isatty(STDIN_FILENO) != 1) exit(77);
#if 0
std::cout << getpid() << std::endl;
sleep(15);
#endif
#ifdef YACURS_USE_WCHAR
if (setlocale(LC_ALL, "en_US.UTF-8") == 0) exit(77);
#endif
try {
YACURS::Curses::init();
YACURS::TitleBar* title = new YACURS::TitleBar(
YACURS::TitleBar::POS_TOP, "Resize 5: Overlapping windows");
YACURS::Curses::title(title);
// NOTE:
//
// The order the objects are created (MyWindow, StatusBar) is
// important here. Because MyWindow calls
// StatusBar::put_msg() on resize we have to make sure
// StatusBar is resized first. Since YACURS::EventQueue calls the
// last YACURS::EventConnector connected first, StatusBar has to be
// created AFTER MyWindow.
MyWindow* w1 = new MyWindow(YACURS::Margin(1, 0, 1, 0));
w1->frame(true);
w1->add_hotkey(HotKeyQuit('q'));
w1->add_hotkey(HotKeyQuit('Q'));
YACURS::StatusBar* sl = new YACURS::StatusBar();
sl->push("Press Q to quit");
YACURS::Curses::statusbar(sl);
YACURS::HPack* hpack = new YACURS::HPack;
#ifdef YACURS_USE_WCHAR
YACURS::Label* hl1 = new YACURS::Label("åƀčđėḟǥħıjķł₥ñøṗqṙşŧūvẇ×¥ƶ");
YACURS::Label* hl2 = new YACURS::Label("ÅßČĐĚḞĠḢİJĶŁṀŅØṖQṘṠṪǓVẆẊ¥Ƶ");
#else
YACURS::Label* hl1 = new YACURS::Label("abcdefghijklmnopqrstuvwxyz");
YACURS::Label* hl2 = new YACURS::Label("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
#endif
YACURS::Label* hl3 = new YACURS::Label("0123456789");
hpack->add_front(hl1);
hpack->add_front(hl2);
hpack->add_back(hl3);
YACURS::VPack* vpack = new YACURS::VPack;
YACURS::Label* vls[20];
for (int i = 0; i < 20; i++) {
std::ostringstream _i;
_i << i;
vls[i] = new YACURS::Label("VYACURS::Label " + _i.str());
vpack->add_back(vls[i]);
}
hpack->add_front(vpack);
w1->widget(hpack);
YACURS::Curses::mainwindow(w1);
YACURS::Curses::run();
delete vpack;
for (int i = 0; i < 20; i++) {
delete vls[i];
}
delete title;
delete hl1;
delete hl2;
delete hl3;
delete hpack;
delete w1;
delete sl;
YACURS::Curses::end();
} catch (std::exception& e) {
YACURS::Curses::end();
std::cerr << e.what() << std::endl;
return 1;
}
return 0;
}
|