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
|
/* -*- mode: C++; tab-width: 4 -*- */
/* ===================================================================== *\
Copyright (c) 1999-2001 Palm, Inc. or its subsidiaries.
All rights reserved.
This file is part of the Palm OS Emulator.
This program 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.
\* ===================================================================== */
#ifndef EmApplicationFltk_h
#define EmApplicationFltk_h
#include "EmApplication.h" // EmApplication
#include "EmStructs.h" // ByteList
class EmWindowFltk;
class Fl_Widget;
class EmApplicationFltk : public EmApplication
{
public:
EmApplicationFltk (void);
virtual ~EmApplicationFltk (void);
public:
virtual Bool Startup (int argc, char** argv);
void Run (void);
virtual void Shutdown (void);
void HandleIdle (void);
private:
void PrvCreateWindow (int argc, char** argv);
Bool PrvIdleClipboard (void);
static void PrvClipboardPeriodic (void* data);
Fl_Widget* PrvGetClipboardWidget (void);
private:
EmWindowFltk* fAppWindow;
Fl_Widget* fClipboardWidget;
ByteList fClipboardData;
};
extern EmApplicationFltk* gHostApplication;
#endif // EmApplicationFltk_h
|