Displaying 6 results from an estimated 6 matches for "mouse_mov".
Did you mean:
mouse_move
2008 Jun 07
3
Screen Resolution within the "Configure Wine" window
I had to reconfigure the wine window size in order to run an app. Having changed it, the window size was fine but the letter sizes are huge. When I try to reconfigure it i cannot get to the Graphics lower part of the page in order to put things right. Is there a way to do this other than with the mouse?
I.e, with some keyboard shortcuts?
Bear.
2008 Jan 08
0
9 commits - configure.ac test/custom test/Makefile.am test/swfdec_test_initialize.as test/swfdec_test_initialize.h test/swfdec_test_test.c test/trace
...to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301 USA
+ */
+
+run_test = function (t, file) {
+ var e;
+ print ("Testing " + file);
+ try {
+ t.reset (file);
+ t.trace (file + ".trace");
+ t.advance (300);
+ t.mouse_move (50, 50);
+ t.advance (300);
+ t.mouse_press (50, 50);
+ t.advance (300);
+ t.mouse_move (140, 140);
+ t.advance (300);
+ t.mouse_move (50, 50);
+ t.advance (300);
+ t.mouse_release (50, 50);
+ t.advance (300);
+ t.mouse_press (50, 50);
+ t.advance (300);
+ t.mo...
2013 Feb 15
0
Wine release 1.5.24
...NameText().
winemac: Implement fake support for the active Windows keyboard layout.
winemac: Implement SysCommand() to prevent Alt keypresses from activating system menu.
winemac: Add WineApplication methods to convert from Cocoa to Win32 coordinate space.
winemac: Implement MOUSE_MOVED(_ABSOLUTE) events.
winemac: Process clicks in an inactive window in addition to activating it.
secur32: On Mac, add support for cipher suites defined in 10.8 SDK.
user32: Improve mouse wheel scrolling in edit control.
user32: Improve mouse wheel scrolling in listbox contro...
2008 Jan 08
0
4 commits - test/.gitignore test/image test/Makefile.am test/swfdec_test_function.c test/swfdec_test_image.c test/swfdec_test_image.h test/swfdec_test_initialize.as test/swfdec_test_initialize.h test/swfdec_test_test.c test/trace
...7,12 +17,18 @@
* Boston, MA 02110-1301 USA
*/
+Image = Native.Image;
+Image.prototype = {};
+Image.prototype.compare = Native.Image_compare;
+Image.prototype.save = Native.Image_save;
+
Test = Native.Test;
Test.prototype = {};
Test.prototype.advance = Native.Test_advance;
Test.prototype.mouse_move = Native.Test_mouse_move;
Test.prototype.mouse_press = Native.Test_mouse_press;
Test.prototype.mouse_release = Native.Test_mouse_release;
+Test.prototype.render = Native.Test_render;
Test.prototype.reset = Native.Test_reset;
Test.prototype.trace = Native.Test_trace;
Test.prototype.addProperty...
2007 Nov 28
0
59 commits - libswfdec-gtk/swfdec_gtk_widget.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_button.c libswfdec/swfdec_button.h libswfdec/swfdec_button_movie.c libswfdec/swfdec_button_movie.h libswfdec/swfdec_event.c
...gs, key_code);
-#define SWFDEC_IMPLEMENTED_EVENTS \
- ((1<< SWFDEC_EVENT_LOAD) | (1<<SWFDEC_EVENT_UNLOAD) | (1<<SWFDEC_EVENT_ENTER) | \
- (1<< SWFDEC_EVENT_INITIALIZE) | (1<<SWFDEC_EVENT_CONSTRUCT) | \
- (1<< SWFDEC_EVENT_MOUSE_DOWN) | (1<<SWFDEC_EVENT_MOUSE_MOVE) | (1<<SWFDEC_EVENT_MOUSE_UP))
- if (event_flags & ~SWFDEC_IMPLEMENTED_EVENTS) {
- SWFDEC_ERROR ("using non-implemented clip events %u", event_flags & ~SWFDEC_IMPLEMENTED_EVENTS);
+#define SWFDEC_UNIMPLEMENTED_EVENTS \
+ ((1<< SWFDEC_EVENT_DATA) | (1<<SWFD...
2008 Jan 21
0
70 commits - configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_socket.c libswfdec-gtk/swfdec_gtk_socket.h libswfdec-gtk/swfdec_playback_alsa.c
...o the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301 USA
+ */
+
+run_test = function (t, file) {
+ var e;
+ print ("Testing " + file);
+ try {
+ t.reset (file);
+ t.trace (file + ".trace");
+ t.advance (1000);
+ t.mouse_move (50, 50);
+ t.advance (1000);
+ t.mouse_press (50, 50);
+ t.advance (1000);
+ t.mouse_move (140, 140);
+ t.advance (1000);
+ t.mouse_move (50, 50);
+ t.advance (1000);
+ t.mouse_release (50, 50);
+ t.advance (1000);
+ t.mouse_press (50, 50);
+ t.advance (1000);
+...