win_gui 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +43 -0
- data/Rakefile +58 -0
- data/VERSION +1 -0
- data/book_code/early_success/bundle.rb +34 -0
- data/book_code/early_success/english.txt +1 -0
- data/book_code/early_success/jruby_basics.rb +47 -0
- data/book_code/early_success/windows_basics.rb +97 -0
- data/book_code/guessing/locknote.rb +379 -0
- data/book_code/guessing/monkeyshines.rb +14 -0
- data/book_code/guessing/note.rb +120 -0
- data/book_code/guessing/note_spec.rb +175 -0
- data/book_code/guessing/replay.rb +21 -0
- data/book_code/guessing/seed.rb +9 -0
- data/book_code/guessing/spec_helper.rb +69 -0
- data/book_code/guessing/windows_gui.rb +247 -0
- data/book_code/home_stretch/junquenote.rb +151 -0
- data/book_code/home_stretch/locknote.rb +180 -0
- data/book_code/home_stretch/note.rb +144 -0
- data/book_code/home_stretch/note_spec.rb +191 -0
- data/book_code/home_stretch/spec_helper.rb +55 -0
- data/book_code/home_stretch/swing_gui.rb +50 -0
- data/book_code/home_stretch/windows_gui.rb +232 -0
- data/book_code/junquenote/exports.sh +10 -0
- data/book_code/junquenote/jruby_mac.sh +10 -0
- data/book_code/junquenote/junquenote_app.rb +262 -0
- data/book_code/novite/Rakefile +10 -0
- data/book_code/novite/app/controllers/application.rb +18 -0
- data/book_code/novite/app/controllers/guests_controller.rb +28 -0
- data/book_code/novite/app/controllers/parties_controller.rb +77 -0
- data/book_code/novite/app/helpers/application_helper.rb +11 -0
- data/book_code/novite/app/helpers/guests_helper.rb +10 -0
- data/book_code/novite/app/helpers/parties_helper.rb +10 -0
- data/book_code/novite/app/models/guest.rb +11 -0
- data/book_code/novite/app/models/party.rb +32 -0
- data/book_code/novite/app/models/party_mailer.rb +19 -0
- data/book_code/novite/app/views/layouts/application.rhtml +44 -0
- data/book_code/novite/app/views/parties/new.html.erb +42 -0
- data/book_code/novite/app/views/parties/show.html.erb +43 -0
- data/book_code/novite/app/views/party_mailer/invite.erb +17 -0
- data/book_code/novite/config/boot.rb +117 -0
- data/book_code/novite/config/database.yml +19 -0
- data/book_code/novite/config/environment.rb +67 -0
- data/book_code/novite/config/environments/development.rb +29 -0
- data/book_code/novite/config/environments/production.rb +27 -0
- data/book_code/novite/config/environments/test.rb +30 -0
- data/book_code/novite/config/initializers/inflections.rb +18 -0
- data/book_code/novite/config/initializers/mime_types.rb +13 -0
- data/book_code/novite/config/routes.rb +47 -0
- data/book_code/novite/db/migrate/001_create_parties.rb +26 -0
- data/book_code/novite/db/migrate/002_create_guests.rb +23 -0
- data/book_code/novite/db/schema.rb +41 -0
- data/book_code/novite/log/empty.txt +0 -0
- data/book_code/novite/public/.htaccess +40 -0
- data/book_code/novite/public/404.html +38 -0
- data/book_code/novite/public/422.html +38 -0
- data/book_code/novite/public/500.html +38 -0
- data/book_code/novite/public/dispatch.cgi +10 -0
- data/book_code/novite/public/dispatch.fcgi +24 -0
- data/book_code/novite/public/dispatch.rb +18 -0
- data/book_code/novite/public/favicon.ico +0 -0
- data/book_code/novite/public/images/rails.png +0 -0
- data/book_code/novite/public/index.html +285 -0
- data/book_code/novite/public/javascripts/application.js +10 -0
- data/book_code/novite/public/javascripts/controls.js +971 -0
- data/book_code/novite/public/javascripts/dragdrop.js +980 -0
- data/book_code/novite/public/javascripts/effects.js +1128 -0
- data/book_code/novite/public/javascripts/prototype.js +4233 -0
- data/book_code/novite/public/robots.txt +5 -0
- data/book_code/novite/script/about +3 -0
- data/book_code/novite/script/console +3 -0
- data/book_code/novite/script/destroy +3 -0
- data/book_code/novite/script/generate +3 -0
- data/book_code/novite/script/performance/benchmarker +3 -0
- data/book_code/novite/script/performance/profiler +3 -0
- data/book_code/novite/script/performance/request +3 -0
- data/book_code/novite/script/plugin +3 -0
- data/book_code/novite/script/process/inspector +3 -0
- data/book_code/novite/script/process/reaper +3 -0
- data/book_code/novite/script/process/spawner +3 -0
- data/book_code/novite/script/runner +3 -0
- data/book_code/novite/script/server +3 -0
- data/book_code/novite/test/test_helper.rb +46 -0
- data/book_code/one_more_thing/applescript.rb +68 -0
- data/book_code/one_more_thing/note_spec.rb +50 -0
- data/book_code/one_more_thing/spec_helper.rb +17 -0
- data/book_code/one_more_thing/textedit-pure.rb +28 -0
- data/book_code/one_more_thing/textedit.applescript +26 -0
- data/book_code/one_more_thing/textedit.rb +32 -0
- data/book_code/one_more_thing/textnote.rb +87 -0
- data/book_code/simplify/junquenote.rb +48 -0
- data/book_code/simplify/locknote.rb +46 -0
- data/book_code/simplify/note.rb +35 -0
- data/book_code/simplify/note_spec.rb +28 -0
- data/book_code/simplify/swing_gui.rb +45 -0
- data/book_code/simplify/windows_gui.rb +232 -0
- data/book_code/simplify/windows_gui_spec.rb +35 -0
- data/book_code/story/invite.story +19 -0
- data/book_code/story/journal.txt +29 -0
- data/book_code/story/novite_stories.rb +156 -0
- data/book_code/story/party.rb +149 -0
- data/book_code/story/password.rb +61 -0
- data/book_code/story/password.story +26 -0
- data/book_code/story/rsvp.story +29 -0
- data/book_code/tables/TestTime.html +93 -0
- data/book_code/tables/TestTimeSample.html +63 -0
- data/book_code/tables/calculate_time.rb +39 -0
- data/book_code/tables/calculator.rb +108 -0
- data/book_code/tables/calculator_actions.rb +27 -0
- data/book_code/tables/calculator_spec.rb +47 -0
- data/book_code/tables/fit.rb +32 -0
- data/book_code/tables/matrix.rb +109 -0
- data/book_code/tables/pseudocode.rb +17 -0
- data/book_code/tubes/book_selenium.rb +67 -0
- data/book_code/tubes/book_watir.rb +60 -0
- data/book_code/tubes/dragdrop.html +81 -0
- data/book_code/tubes/html_capture.rb +33 -0
- data/book_code/tubes/joke_list.rb +67 -0
- data/book_code/tubes/list_spec.rb +41 -0
- data/book_code/tubes/search_spec.rb +32 -0
- data/book_code/tubes/selenium_example.rb +66 -0
- data/book_code/tubes/selenium_link.rb +23 -0
- data/book_code/tubes/web_server.rb +14 -0
- data/book_code/windows/wgui.rb +29 -0
- data/book_code/windows/wobj.rb +25 -0
- data/book_code/windows/wsh.rb +25 -0
- data/book_code/with_rspec/empty_spec.rb +13 -0
- data/book_code/with_rspec/junquenote.rb +60 -0
- data/book_code/with_rspec/locknote.rb +129 -0
- data/book_code/with_rspec/note_spec.rb +32 -0
- data/book_code/with_rspec/should_examples.rb +18 -0
- data/exp/exp.rb +6 -0
- data/exp/exp_encodings.rb +40 -0
- data/exp/exp_enum_windows.rb +60 -0
- data/exp/exp_quik.rb +38 -0
- data/exp/exp_wsh.rb +115 -0
- data/exp/old/windows_basics.rb +80 -0
- data/exp/old/wnote.rb +80 -0
- data/exp/old/wnote_spec.rb +20 -0
- data/features/step_definitions/win_gui_steps.rb +0 -0
- data/features/support/env.rb +4 -0
- data/features/win_gui.feature +9 -0
- data/lib/note/java/jemmy.jar +0 -0
- data/lib/note/java/jnote.rb +48 -0
- data/lib/note/java/jruby_basics.rb +37 -0
- data/lib/note/java/junquenote_app.rb +262 -0
- data/lib/note/java/note_spec.rb +20 -0
- data/lib/note/win/locknote.rb +19 -0
- data/lib/note.rb +15 -0
- data/lib/win_gui/constants.rb +66 -0
- data/lib/win_gui/string_extensions.rb +24 -0
- data/lib/win_gui/win_gui.rb +274 -0
- data/lib/win_gui/window.rb +70 -0
- data/lib/win_gui.rb +3 -0
- data/spec/note/win/locknote_spec.rb +7 -0
- data/spec/spec.opts +2 -0
- data/spec/spec_helper.rb +100 -0
- data/spec/test_apps/locknote/LockNote.exe +0 -0
- data/spec/win_gui/string_extensions_spec.rb +61 -0
- data/spec/win_gui/win_gui_spec.rb +733 -0
- data/spec/win_gui/window_spec.rb +124 -0
- metadata +251 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 arvicco
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
= win_gui
|
2
|
+
|
3
|
+
== Description
|
4
|
+
|
5
|
+
Welcome to WinGui!
|
6
|
+
|
7
|
+
WinGui is a module that provides convenient wrapper methods for multiple Win32 API
|
8
|
+
functions (mostly from user32.dll) dealing with GUI manipulation/automation.
|
9
|
+
In addition to straightforward API wrappers, it also defines more Ruby-like
|
10
|
+
abstractions and convenience methods for manipulating windows and other GUI
|
11
|
+
elements (such as WinGui::Window class and its methods).
|
12
|
+
|
13
|
+
It is still work in progress, only a small number of API functions wrapped so far...
|
14
|
+
|
15
|
+
== Documentation
|
16
|
+
|
17
|
+
See WinGui and WinGui::Window for documentation
|
18
|
+
|
19
|
+
== Examples
|
20
|
+
|
21
|
+
require 'win_gui'
|
22
|
+
include WinGui
|
23
|
+
|
24
|
+
More examples will follow as the code will be closer to production quality...
|
25
|
+
|
26
|
+
== Note on Patches/Pull Requests
|
27
|
+
|
28
|
+
* Fork the project.
|
29
|
+
* Make your feature addition or bug fix.
|
30
|
+
* Add tests for it. This is important so I don't break it in a
|
31
|
+
future version unintentionally.
|
32
|
+
* Commit, do not mess with rakefile, version, or history.
|
33
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
34
|
+
* Send me a pull request. Bonus points for topic branches.
|
35
|
+
|
36
|
+
== Credits
|
37
|
+
|
38
|
+
This library started as an extension of ideas and code described in excellent book
|
39
|
+
"Scripted GUI Testing with Ruby" by Ian Dees.
|
40
|
+
|
41
|
+
== Copyright
|
42
|
+
|
43
|
+
Copyright (c) 2010 arvicco. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "win_gui"
|
8
|
+
gem.summary = %Q{Rubyesque interfaces and wrappers for Win32 API GUI functions}
|
9
|
+
gem.description = %Q{Rubyesque interfaces and wrappers for Win32 API GUI functions}
|
10
|
+
gem.email = "arvitallian@gmail.com"
|
11
|
+
gem.homepage = "http://github.com/arvicco/win_gui"
|
12
|
+
gem.authors = ["arvicco"]
|
13
|
+
gem.add_dependency "win32-api", ">= 1.4.5"
|
14
|
+
gem.add_development_dependency "rspec", ">= 1.2.9"
|
15
|
+
gem.add_development_dependency "cucumber", ">= 0"
|
16
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
17
|
+
end
|
18
|
+
Jeweler::GemcutterTasks.new
|
19
|
+
rescue LoadError
|
20
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
21
|
+
end
|
22
|
+
|
23
|
+
require 'spec/rake/spectask'
|
24
|
+
Spec::Rake::SpecTask.new(:spec) do |spec|
|
25
|
+
spec.libs << 'lib' << 'spec'
|
26
|
+
spec.spec_files = FileList['spec/**/*_spec.rb']
|
27
|
+
end
|
28
|
+
|
29
|
+
Spec::Rake::SpecTask.new(:rcov) do |spec|
|
30
|
+
spec.libs << 'lib' << 'spec'
|
31
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
32
|
+
spec.rcov = true
|
33
|
+
end
|
34
|
+
|
35
|
+
task :spec => :check_dependencies
|
36
|
+
|
37
|
+
begin
|
38
|
+
require 'cucumber/rake/task'
|
39
|
+
Cucumber::Rake::Task.new(:features)
|
40
|
+
|
41
|
+
task :features => :check_dependencies
|
42
|
+
rescue LoadError
|
43
|
+
task :features do
|
44
|
+
abort "Cucumber is not available. In order to run features, you must: sudo gem install cucumber"
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
task :default => :spec
|
49
|
+
|
50
|
+
require 'rake/rdoctask'
|
51
|
+
Rake::RDocTask.new do |rdoc|
|
52
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
53
|
+
|
54
|
+
rdoc.rdoc_dir = 'rdoc'
|
55
|
+
rdoc.title = "win_gui #{version}"
|
56
|
+
rdoc.rdoc_files.include('README*')
|
57
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
58
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|
@@ -0,0 +1,34 @@
|
|
1
|
+
#---
|
2
|
+
# Excerpted from "Scripted GUI Testing With Ruby",
|
3
|
+
# published by The Pragmatic Bookshelf.
|
4
|
+
# Copyrights apply to this code. It may not be used to create training material,
|
5
|
+
# courses, books, articles, and the like. Contact us if you are in doubt.
|
6
|
+
# We make no guarantees that this code is fit for any purpose.
|
7
|
+
# Visit http://www.pragmaticprogrammer.com/titles/idgtr for more book information.
|
8
|
+
#---
|
9
|
+
require 'java'
|
10
|
+
require 'jemmy.jar'
|
11
|
+
require 'junquenote_app'
|
12
|
+
|
13
|
+
include_class 'org.netbeans.jemmy.JemmyProperties'
|
14
|
+
include_class 'org.netbeans.jemmy.TestOut'
|
15
|
+
|
16
|
+
%w(Frame TextArea MenuBar Dialog Button).each do |o|
|
17
|
+
include_class "org.netbeans.jemmy.operators.J#{o}Operator"
|
18
|
+
end
|
19
|
+
|
20
|
+
JemmyProperties.set_current_timeout 'DialogWaiter.WaitDialogTimeout', 3000
|
21
|
+
JemmyProperties.set_current_output TestOut.get_null_output
|
22
|
+
|
23
|
+
JunqueNoteApp.new
|
24
|
+
main_window = JFrameOperator.new 'JunqueNote'
|
25
|
+
menu = JMenuBarOperator.new main_window
|
26
|
+
|
27
|
+
|
28
|
+
include_class 'org.netbeans.jemmy.Bundle'
|
29
|
+
|
30
|
+
bundle = Bundle.new
|
31
|
+
bundle.load_from_file 'english.txt'
|
32
|
+
exit_menu = bundle.get_resource 'junquenote.exit_menu'
|
33
|
+
|
34
|
+
menu.push_menu_no_block exit_menu
|
@@ -0,0 +1 @@
|
|
1
|
+
junquenote.exit_menu=File|Exit
|
@@ -0,0 +1,47 @@
|
|
1
|
+
#---
|
2
|
+
# Excerpted from "Scripted GUI Testing With Ruby",
|
3
|
+
# published by The Pragmatic Bookshelf.
|
4
|
+
# Copyrights apply to this code. It may not be used to create training material,
|
5
|
+
# courses, books, articles, and the like. Contact us if you are in doubt.
|
6
|
+
# We make no guarantees that this code is fit for any purpose.
|
7
|
+
# Visit http://www.pragmaticprogrammer.com/titles/idgtr for more book information.
|
8
|
+
#---
|
9
|
+
|
10
|
+
require 'java'
|
11
|
+
require 'jemmy.jar'
|
12
|
+
require 'junquenote_app'
|
13
|
+
|
14
|
+
include_class 'org.netbeans.jemmy.JemmyProperties'
|
15
|
+
include_class 'org.netbeans.jemmy.TestOut'
|
16
|
+
|
17
|
+
%w(Frame TextArea MenuBar Dialog Button).each do |o| #(1)
|
18
|
+
include_class "org.netbeans.jemmy.operators.J#{o}Operator"
|
19
|
+
end
|
20
|
+
|
21
|
+
JemmyProperties.set_current_timeout 'DialogWaiter.WaitDialogTimeout', 3000 #(2)
|
22
|
+
JemmyProperties.set_current_output TestOut.get_null_output #(3)
|
23
|
+
|
24
|
+
JunqueNoteApp.new
|
25
|
+
main_window = JFrameOperator.new 'JunqueNote'
|
26
|
+
|
27
|
+
puts "The main window's object ID is #{main_window.object_id}."
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
edit = JTextAreaOperator.new main_window #(4)
|
33
|
+
edit.type_text "this is some text" #(5)
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
menu = JMenuBarOperator.new main_window
|
39
|
+
menu.push_menu_no_block 'File|Exit', '|'
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
|
44
|
+
dialog = JDialogOperator.new "Quittin' time"
|
45
|
+
button = JButtonOperator.new dialog, "No"
|
46
|
+
button.push
|
47
|
+
|
@@ -0,0 +1,97 @@
|
|
1
|
+
#---
|
2
|
+
# Excerpted from "Scripted GUI Testing With Ruby",
|
3
|
+
# published by The Pragmatic Bookshelf.
|
4
|
+
# Copyrights apply to this code. It may not be used to create training material,
|
5
|
+
# courses, books, articles, and the like. Contact us if you are in doubt.
|
6
|
+
# We make no guarantees that this code is fit for any purpose.
|
7
|
+
# Visit http://www.pragmaticprogrammer.com/titles/idgtr for more book information.
|
8
|
+
#---
|
9
|
+
|
10
|
+
require 'Win32API'
|
11
|
+
|
12
|
+
def user32(name, param_types, return_value) #(1)
|
13
|
+
Win32API.new 'user32', name, param_types, return_value
|
14
|
+
end
|
15
|
+
|
16
|
+
find_window = user32 'FindWindow', ['P', 'P'], 'L'
|
17
|
+
|
18
|
+
system 'start "" "C:/LockNote/LockNote.exe"'
|
19
|
+
|
20
|
+
sleep 0.2 while (main_window = find_window.call \
|
21
|
+
nil, 'LockNote - Steganos LockNote') <= 0 #(2)
|
22
|
+
|
23
|
+
puts "The main window's handle is #{main_window}."
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
keybd_event = user32 'keybd_event', ['I', 'I', 'L', 'L'], 'V'
|
29
|
+
|
30
|
+
KEYEVENTF_KEYDOWN = 0
|
31
|
+
KEYEVENTF_KEYUP = 2
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
"this is some text".upcase.each_byte do |b| #(3)
|
37
|
+
keybd_event.call b, 0, KEYEVENTF_KEYDOWN, 0
|
38
|
+
sleep 0.05
|
39
|
+
keybd_event.call b, 0, KEYEVENTF_KEYUP, 0
|
40
|
+
sleep 0.05
|
41
|
+
end
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
post_message = user32 'PostMessage', ['L', 'L', 'L', 'L'], 'L'
|
47
|
+
|
48
|
+
WM_SYSCOMMAND = 0x0112
|
49
|
+
SC_CLOSE = 0xF060
|
50
|
+
|
51
|
+
post_message.call main_window, WM_SYSCOMMAND, SC_CLOSE, 0
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
# You might need a slight delay here.
|
56
|
+
sleep 0.5
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
get_dlg_item = user32 'GetDlgItem', ['L', 'L'], 'L'
|
61
|
+
|
62
|
+
dialog = timeout(3) do #(4)
|
63
|
+
sleep 0.2 while (h = find_window.call \
|
64
|
+
nil, 'Steganos LockNote') <= 0; h #(5)
|
65
|
+
end
|
66
|
+
|
67
|
+
IDNO = 7
|
68
|
+
button = get_dlg_item.call dialog, IDNO
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
get_window_rect = user32 'GetWindowRect', ['L', 'P'], 'I'
|
74
|
+
|
75
|
+
rectangle = [0, 0, 0, 0].pack 'L*'
|
76
|
+
get_window_rect.call button, rectangle
|
77
|
+
left, top, right, bottom = rectangle.unpack 'L*'
|
78
|
+
|
79
|
+
puts "The No button is #{right - left} pixels wide." #(6)
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
|
84
|
+
set_cursor_pos = user32 'SetCursorPos', ['L', 'L'], 'I'
|
85
|
+
|
86
|
+
mouse_event = user32 'mouse_event', ['L', 'L', 'L', 'L', 'L'], 'V'
|
87
|
+
|
88
|
+
MOUSEEVENTF_LEFTDOWN = 0x0002
|
89
|
+
MOUSEEVENTF_LEFTUP = 0x0004
|
90
|
+
|
91
|
+
center = [(left + right) / 2, (top + bottom) / 2]
|
92
|
+
|
93
|
+
set_cursor_pos.call *center #(7)
|
94
|
+
|
95
|
+
mouse_event.call MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0
|
96
|
+
mouse_event.call MOUSEEVENTF_LEFTUP, 0, 0, 0, 0
|
97
|
+
|