More TODOs.

This commit is contained in:
Pietro Gagliardi 2015-11-23 01:03:40 -05:00
parent 2d6c0ee49e
commit 62e3259db7
2 changed files with 5 additions and 0 deletions

View File

@ -41,5 +41,6 @@ void uiMain(void)
void uiQuit(void)
{
// TODO app->PostMessage(B_QUIT_REQUESTED);?
// TODO see window.cpp for why that alone won't work
app->Quit();
}

View File

@ -3,6 +3,10 @@
#include "uipriv_haiku.hpp"
using namespace std;
// TODOs:
// - Command+Q invariably quits; override that by catching the B_QUIT_REQUESTED in main.cpp
// - other global shortcuts that need to be handled by overriding DispatchMessage() (NOT MessageReceived()) when adding uiArea event handling
class libuiBWindow : public BWindow {
public:
// C++11! Inherit constructors.