~3v1n0/unity/lim-panel

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
/*
 * Copyright 2010 Inalogic Inc.
 *
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 3, as published
 * by the  Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 * MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
 * PURPOSE.  See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * version 3 along with this program.  If not, see
 * <http://www.gnu.org/licenses/>
 *
 * Authored by: Jay Taoko <jaytaoko@inalogic.com>
 *
 */

#include "Nux/Nux.h"
#include "Nux/VLayout.h"
#include "Nux/HLayout.h"
#include "Nux/WindowThread.h"
#include "Nux/TextEntry.h"

#ifndef NUXTESTFRAMEWORK_H
#define NUXTESTFRAMEWORK_H

class NuxTestFramework
{
public:
  NuxTestFramework(const char* program_name, int window_width, int window_height, int program_life_span);
  virtual ~NuxTestFramework();

  virtual void Startup();
  virtual void UserInterfaceSetup();
  virtual void Run();

  bool ReadyToGo();

  nux::WindowThread* GetWindowThread();

public:
  std::string program_name_;
  int program_life_span_;                  //!< The program will auto-terminate after a delay in milliseconds.
  nux::TimeOutSignal *timeout_signal_;

  nux::WindowThread *window_thread_;

  int window_width_;
  int window_height_;

private:
  void ProgramExitCall(void *data);
  void WaitForConfigureEvent(int x, int y, int width, int height);
  bool ready_to_go_;
};

#endif // NUXTESTFRAMEWORK_H