finalcut/src/include/final/fapplication.h

219 lines
8.5 KiB
C
Raw Normal View History

2017-11-04 07:03:53 +01:00
/***********************************************************************
* fapplication.h - Manages the application events *
* *
* This file is part of the Final Cut widget toolkit *
* *
2020-01-20 21:40:00 +01:00
* Copyright 2013-2020 Markus Gans *
2017-11-04 07:03:53 +01:00
* *
* The Final Cut is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public License *
* as published by the Free Software Foundation; either version 3 of *
* the License, or (at your option) any later version. *
* *
* The Final Cut 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 Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this program. If not, see *
* <http://www.gnu.org/licenses/>. *
***********************************************************************/
/* Inheritance diagram
*
*
*
* FVTerm FObject
*
*
*
*
*
*
* FWidget
*
*
*
* 1 *
* FApplication -- - - - FEvent
* :
* :
* : *
* :- - - - FPoint
* :
* :
* : *
* - - - - FWidget
*
*/
2015-05-23 13:35:12 +02:00
#ifndef FAPPLICATION_H
#define FAPPLICATION_H
2015-05-23 13:35:12 +02:00
#if !defined (USE_FINAL_H) && !defined (COMPILE_FINAL_CUT)
#error "Only <final/final.h> can be included directly."
#endif
2015-05-23 13:35:12 +02:00
#include <getopt.h>
#include <deque>
2018-12-17 02:06:22 +01:00
#include <memory>
2017-09-11 03:06:02 +02:00
#include <string>
#include <utility>
2015-05-23 13:35:12 +02:00
#include "final/ftypes.h"
#include "final/fwidget.h"
2015-05-23 13:35:12 +02:00
namespace finalcut
{
2015-05-23 13:35:12 +02:00
// class forward declaration
class FEvent;
class FAccelEvent;
class FCloseEvent;
class FFocusEvent;
class FKeyEvent;
class FMouseEvent;
class FStartOptions;
class FTimerEvent;
class FWheelEvent;
class FMouseControl;
class FKeyboard;
class FPoint;
class FObject;
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
// class FApplication
//----------------------------------------------------------------------
class FApplication : public FWidget
{
2017-09-11 03:06:02 +02:00
public:
// Constructor
FApplication (const int&, char*[], bool = false);
// Disable copy constructor
FApplication (const FApplication&) = delete;
2017-09-11 03:06:02 +02:00
// Destructor
2020-02-19 21:59:13 +01:00
~FApplication() override;
2017-09-11 03:06:02 +02:00
// Disable assignment operator (=)
FApplication& operator = (const FApplication&) = delete;
2017-09-11 03:06:02 +02:00
// Accessors
2019-10-05 23:20:07 +02:00
const FString getClassName() const override;
2018-12-31 06:18:39 +01:00
int getArgc() const;
char** getArgv() const;
static FApplication* getApplicationObject();
2017-09-11 03:06:02 +02:00
// Inquiry
static bool isQuit();
2017-09-11 03:06:02 +02:00
// Methods
int exec(); // run
2019-10-08 04:37:19 +02:00
int enterLoop();
void exitLoop();
static void exit (int = 0);
void quit();
static bool sendEvent (const FObject*, const FEvent*);
static void queueEvent (const FObject*, const FEvent*);
static void sendQueuedEvents ();
static bool eventInQueue();
static bool removeQueuedEvent (const FObject*);
static FWidget* processParameters (const int&, char*[]);
static void showParameterUsage ()
#if defined(__clang__) || defined(__GNUC__)
__attribute__((noreturn))
#endif
;
static void closeConfirmationDialog (FWidget*, FCloseEvent*);
2017-09-11 03:06:02 +02:00
// Callback method
2018-12-27 00:14:46 +01:00
void cb_exitApp (FWidget*, FDataPtr);
2017-09-11 03:06:02 +02:00
private:
2018-12-28 22:57:43 +01:00
// Typedefs
2018-12-17 02:06:22 +01:00
typedef std::pair<const FObject*, std::shared_ptr<const FEvent> > eventPair;
2017-09-11 03:06:02 +02:00
typedef std::deque<eventPair> eventQueue;
// Methods
2018-12-28 22:57:43 +01:00
void init (uInt64, uInt64);
static void cmd_options (const int&, char*[]);
static FStartOptions& getStartOptions();
void findKeyboardWidget();
bool isKeyPressed();
void keyPressed();
void keyReleased();
void escapeKeyPressed();
void performKeyboardAction();
void sendEscapeKeyPressEvent();
bool sendKeyDownEvent (FWidget*);
bool sendKeyPressEvent (FWidget*);
bool sendKeyUpEvent (FWidget*);
void sendKeyboardAccelerator();
void processKeyboardEvent();
bool processDialogSwitchAccelerator();
2020-02-19 21:59:13 +01:00
bool processAccelerator (const FWidget* const&);
bool getMouseEvent();
FWidget*& determineClickedWidget();
void unsetMoveSizeMode();
void closeDropDown();
void unselectMenubarItems();
void sendMouseEvent();
void sendMouseMoveEvent ( const FPoint&
, const FPoint&
, int );
void sendMouseLeftClickEvent ( const FPoint&
, const FPoint&
, int );
void sendMouseRightClickEvent ( const FPoint&
, const FPoint&
, int );
void sendMouseMiddleClickEvent ( const FPoint&
, const FPoint&
, int );
void sendWheelEvent (const FPoint&, const FPoint&);
void processMouseEvent();
void processResizeEvent();
void processCloseWidget();
bool processNextEvent();
2019-08-06 23:45:28 +02:00
void performTimerAction ( const FObject*
2018-12-31 06:18:39 +01:00
, const FEvent* ) override;
2017-09-11 03:06:02 +02:00
// Data members
2018-12-19 22:04:02 +01:00
int app_argc;
char** app_argv;
2018-12-28 22:57:43 +01:00
uInt64 key_timeout{100000}; // 100 ms
uInt64 dblclick_interval{500000}; // 500 ms
static FMouseControl* mouse;
2018-12-28 22:57:43 +01:00
static eventQueue* event_queue;
2018-12-19 22:04:02 +01:00
static int quit_code;
static bool quit_now;
static int loop_level;
static bool process_timer_event;
static FKeyboard* keyboard;
static FWidget* keyboard_widget;
2015-05-23 13:35:12 +02:00
};
// FApplication inline functions
//----------------------------------------------------------------------
2019-10-05 23:20:07 +02:00
inline const FString FApplication::getClassName() const
{ return "FApplication"; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline int FApplication::getArgc() const
2015-05-23 13:35:12 +02:00
{ return app_argc; }
//----------------------------------------------------------------------
inline char** FApplication::getArgv() const
2015-05-23 13:35:12 +02:00
{ return app_argv; }
//----------------------------------------------------------------------
2018-12-27 00:14:46 +01:00
inline void FApplication::cb_exitApp (FWidget*, FDataPtr)
{ close(); }
} // namespace finalcut
2015-05-23 13:35:12 +02:00
#endif // FAPPLICATION_H