~brandontschaefer/nux/remove-gconf-ibus-1.5

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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*
 * 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/WindowThread.h"
#include "Nux/VLayout.h"
#include "Nux/Layout.h"
#include "Nux/ProgramFramework/ProgramTemplate.h"
#include "Nux/ProgramFramework/TestView.h"
#include <X11/extensions/XTest.h>
#include <X11/keysym.h> 
#include "nux_automated_test_framework.h"


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

  virtual void UserInterfaceSetup();
  
  void ResetEvents();
  nux::TestView* test_view_;
};

EventsTest::EventsTest(const char* program_name,
  int window_width,
  int window_height,
  int program_life_span)
: ProgramTemplate(program_name, window_width, window_height, program_life_span)
{
  ResetEvents();
  test_view_ = NULL;
}

EventsTest::~EventsTest()
{
  
}

void EventsTest::ResetEvents()
{
  if (test_view_)
    test_view_->ResetEvents();
}

void EventsTest::UserInterfaceSetup()
{
  nux::VLayout* main_layout = new nux::VLayout(NUX_TRACKER_LOCATION);
  test_view_ = new nux::TestView(NUX_TRACKER_LOCATION);

  main_layout->AddView(test_view_, 1, nux::MINOR_POSITION_CENTER, nux::MINOR_SIZE_FULL);
  main_layout->SetPadding(10, 10);

  static_cast<nux::WindowThread*>(window_thread_)->SetLayout(main_layout);
  
  nux::ColorLayer background(nux::Color(0xFF4D4D4D));
  static_cast<nux::WindowThread*>(window_thread_)->SetWindowBackgroundPaintLayer(&background);
}

EventsTest* event_test = NULL;

void TestingThread(nux::NThread* /* thread */, void* user_data)
{
  while (event_test->ReadyToGo() == false)
  {
    nuxDebugMsg("Waiting to start");
    nux::SleepForMilliseconds(300);
  }

  nux::SleepForMilliseconds(1000);

  nux::WindowThread* wnd_thread = static_cast<nux::WindowThread*>(user_data);

  NuxAutomatedTestFramework test(wnd_thread);

  test.Startup();

  // Set the mouse at coordinates (0, 0) (top-left corner) on the display
  test.PutMouseAt(0, 0);

  test.TestReportMsg(event_test->test_view_, "TestView created");

  event_test->ResetEvents();
  test.ViewSendMouseMotionToCenter(event_test->test_view_);

  test.TestReportMsg(event_test->test_view_->registered_mouse_move_, "Mouse move event");
  test.TestReportMsg(event_test->test_view_->registered_mouse_enter_, "Mouse enter event");
  test.ViewSendMouseClick(0, 1);

  test.TestReportMsg(event_test->test_view_->registered_mouse_down_, "Mouse down event");
  test.TestReportMsg(event_test->test_view_->registered_mouse_up_, "Mouse up event");
  test.TestReportMsg(event_test->test_view_->registered_mouse_click_, "Mouse click event");

  test.ViewSendMouseDrag(event_test->test_view_, 1, 0, 0, 50, 50);
  test.TestReportMsg(event_test->test_view_->registered_mouse_click_, "Mouse drag event");

  test.ViewSendMouseMotionTo(event_test->test_view_, -5, -5);
  test.TestReportMsg(event_test->test_view_->registered_mouse_leave_, "Mouse leave event");

  event_test->test_view_->EnableDoubleClick(true);
  test.ViewSendMouseDoubleClick(event_test->test_view_, 1);
  test.TestReportMsg(event_test->test_view_->registered_mouse_double_click_, "Mouse double click event");

  event_test->ResetEvents();
  // Deactivate double click and test if the view still receives it.
  event_test->test_view_->EnableDoubleClick(false);
  test.ViewSendMouseDoubleClick(event_test->test_view_, 1);
  test.TestReportMsg(!event_test->test_view_->registered_mouse_double_click_, "Mouse double click de-activated");

  if (test.WhenDoneTerminateProgram())
  {
    nux::SleepForMilliseconds(1000);
    wnd_thread->ExitMainLoop();
  }
  nuxDebugMsg("Exit testing thread");
}

int main()
{
  XInitThreads();

  event_test = new EventsTest("Events Test", 300, 300, 20000);
  event_test->Startup();
  event_test->UserInterfaceSetup();

  nux::SystemThread* test_thread = nux::CreateSystemThread(event_test->GetWindowThread(), &TestingThread, event_test->GetWindowThread());

  test_thread->Start(event_test);

  event_test->Run();

  delete test_thread;
  delete event_test;

  return 0;
}