More TODOs.
This commit is contained in:
parent
2d6c0ee49e
commit
62e3259db7
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue