Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Define __STDC_LIMIT_MACROS for c++ code to get SIZE_MAX | Alexander Larsson | 2010-03-10 | 1 | -0/+1 | |
| | | | | | We need SIZE_MAX for the malloc overflow code, and its not defined in C++ unless __STDC_LIMIT_MACROS is defined. | |||||
* | Define GL_GLEXT_PROTOTYPES in CFLAGS not in random places in the source | Alexander Larsson | 2010-03-10 | 7 | -9/+0 | |
| | ||||||
* | Use macros from <spice/macros.h> rather than duplicate them | Alexander Larsson | 2010-03-09 | 6 | -21/+16 | |
| | ||||||
* | Move canvas_region and group_start/end to canvas_base | Alexander Larsson | 2010-03-08 | 1 | -1/+1 | |
| | ||||||
* | Move virtualization of canvas drawing into common/canvas_base | Alexander Larsson | 2010-03-08 | 8 | -375/+68 | |
| | | | | | | | | | | | Instead of having two virtualizations of the canvas we push the virtualization into the canvas code itself. This not only avoids the duplication of this code, it also makes the exposed API for the canvas much smaller (in terms of exported API). It also lets us use the virtualization to implement basic support for operations in canvas_base which is then overridden by each canvas implementation. | |||||
* | Make canvas Glz decoder integration nicer | Alexander Larsson | 2010-03-08 | 7 | -16/+21 | |
| | | | | | We use a dynamic interface similar to e.g. SpiceImageCache instead of passing both function and opaque | |||||
* | Fix up win32 build reference to pixman_utils.cpp | Alexander Larsson | 2010-03-05 | 1 | -1/+1 | |
| | | | | It was pointing to the wrong directory for pixman_utils.cpp | |||||
* | Only use AI_ADDRCONF if availible | Alexander Larsson | 2010-03-03 | 1 | -1/+4 | |
| | | | | AI_ADDRCONF not availible on winXP, so this fixes windows build. | |||||
* | Update visual studio project for pixman changes | Larsson@.(none) | 2010-03-01 | 1 | -4/+12 | |
| | ||||||
* | Make gdi canvas build in the new pixman world | Larsson@.(none) | 2010-03-01 | 1 | -3/+12 | |
| | ||||||
* | spice client: add ipv6 support. | Gerd Hoffmann | 2010-02-27 | 2 | -53/+41 | |
| | | | | Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> | |||||
* | spice client: fix dns lookup | Gerd Hoffmann | 2010-02-27 | 1 | -3/+9 | |
| | | | | | | ignore lookup results which are not ipv4 Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> | |||||
* | Remove qcairo dependency, only use pixman | Alexander Larsson | 2010-02-23 | 3 | -4/+2 | |
| | ||||||
* | Remove cairo use in client | Alexander Larsson | 2010-02-23 | 4 | -118/+149 | |
| | ||||||
* | Remove no longer needed CAIRO_CANVAS_CACH_IS_SHARED define and code | Alexander Larsson | 2010-02-23 | 3 | -11/+2 | |
| | ||||||
* | Remove cairo_t from cairo canvas | Alexander Larsson | 2010-02-23 | 1 | -15/+8 | |
| | ||||||
* | Replace custom region implementation with pixman_region32_t | Alexander Larsson | 2010-02-23 | 9 | -35/+135 | |
| | | | | | | pixman_region32_t is an efficient well tested region implementation (its the one used in X) that we already depend on via pixman and use in some places. No need to have a custom region implementation. | |||||
* | Use pixman_image_t instead of cairo_surface_t as the generic pixman container | Alexander Larsson | 2010-02-23 | 1 | -15/+15 | |
| | | | | | | This allows us to use the simpler dependency of pixman outside of the cairo backend, and it later lets us move the cairo backend to using pixman only. | |||||
* | Turn image and palette cache into c style dynamic interface | Alexander Larsson | 2010-02-23 | 5 | -51/+73 | |
| | | | | | | Instead of passing a bunch of function pointer and an opaque pointer we make a real type and add a vtable pointer to it. This means we can simplify all the canvas constructors, etc. | |||||
* | Add optional templated base class to Cache and SharedCache | Alexander Larsson | 2010-02-23 | 3 | -4/+7 | |
| | | | | We want this for integration with C-style classes. | |||||
* | Add line rasterizer | Alexander Larsson | 2010-02-23 | 3 | -0/+26 | |
| | ||||||
* | Add pixman utilities | Alexander Larsson | 2010-02-23 | 3 | -0/+27 | |
| | | | | | | | | | | | | | This includes: * pixman region from SpiceRects * rop2 enum * solid fill * solid fill with rop * tiled fill * tiled fill with rop * blit * blit with rop * copy rect | |||||
* | Fix delete vs delete[] mismatches | Alexander Larsson | 2010-02-10 | 2 | -3/+3 | |
| | | | | This fixes a bunch of valgrind warnings. | |||||
* | Use standard int types and <spice/types.h> | Alexander Larsson | 2010-02-04 | 2 | -19/+2 | |
| | ||||||
* | Revert automatic renames that were wrong | Alexander Larsson | 2010-02-04 | 7 | -29/+29 | |
| | | | | Seems my rename script didn't handle C++ namespaces that well. | |||||
* | Use the new header names | Alexander Larsson | 2010-02-04 | 14 | -15/+15 | |
| | | | | | | I just ran: find -name "*.[ch]" | xargs sed -i -f ../spice-protocol/includes.sed find -name "*.cpp" | xargs sed -i -f ../spice-protocol/includes.sed | |||||
* | Rename symbols that were changed in spice-protocol | Alexander Larsson | 2010-02-04 | 57 | -1105/+1105 | |
| | | | | | | This is an automatic change using: $ find -name "*.[ch]" | xargs ../spice-protocol/rename-identifiers.sh ../spice-protocol/renames $ find -name "*.cpp" | xargs ../spice-protocol/rename-identifiers.sh ../spice-protocol/renames | |||||
* | Depend on spice-protocol module | Alexander Larsson | 2010-02-04 | 1 | -0/+1 | |
| | | | | This doesn't actually use the new module, just sets it up for use. | |||||
* | Filter out XIM X events | Alexander Larsson | 2010-02-04 | 1 | -0/+4 | |
| | | | | | | XIM ClientMessage events to an XIM internal window was triggering the check for a window message procs. We need to properly filter events with XFilterEvent to avoid this happening. | |||||
* | client: add Platform::term_printf | Yaniv Kamay | 2010-01-11 | 7 | -72/+133 | |
| | | | | | | Platform::term_printf is a variant of printf that on windows dynamically opens console in order to have visible output during command line processing. | |||||
* | client: fix logger init mix-up | Yaniv Kamay | 2010-01-11 | 2 | -4/+10 | |
| | ||||||
* | client: move log file to spicec appdata dir | Yaniv Kamay | 2010-01-11 | 4 | -18/+36 | |
| | ||||||
* | server,client: server authentication for secured channels. | Yonit Halperin | 2010-01-11 | 11 | -41/+517 | |
| | | | | | | | | | 3 available mechanisms: by public key, by host name, and by certificate subject name. In the former method, chain of trust verification is not performed. The CA certificate files are looked for under <spice-config-dir>/spice_truststore.pem windows <spice-config-dir>=%APPDATA%\spicec\ linux <spice-config-dir>=$HOME/.spicec/ | |||||
* | spice: menu additons | Arnon Gilboa | 2010-01-07 | 3 | -18/+68 | |
| | | | | | | -functions: set_name, remove_command, remove_sub, clear -item state & enum -add state support in RedWindow insert_command & insert_menu | |||||
* | spice: add missing break | Arnon Gilboa | 2010-01-06 | 1 | -0/+1 | |
| | ||||||
* | client: use spice icon instead-of solidice icon | Yaniv Kamay | 2010-01-04 | 5 | -188/+273 | |
| | ||||||
* | spice: position mouse in primary monitor center after full screen toggle | Arnon Gilboa | 2009-12-30 | 10 | -74/+120 | |
| | | | | | | | -move _focused & _pointer_in_window from RedWindow to RedWindow_p's -move shadow focus & cursor handling to sync() -add reset_cursor_pos() to Platform -Monitor set_mode()/restore() use virtual do_set_mode()/do_restore() | |||||
* | spice: on_activate_screen generates on_key_down for any modifier pressed | Arnon Gilboa | 2009-12-30 | 5 | -48/+66 | |
| | | | | | | -call SetWindowsHookEx(WH_KEYBOARD_LL, LowLevelKeyboardProc...) only once, in RedWindow::init() -add Application::cleanup_globals() & RedWindow::cleanup() -cleanup LowLevelKeyboardProc() | |||||
* | client: let PreLoginDialog save and restore LoginDialog | Yaniv Kamay | 2009-12-28 | 2 | -4/+25 | |
| | ||||||
* | client: remove splash image | Yaniv Kamay | 2009-12-28 | 8 | -51225/+1 | |
| | ||||||
* | client: add GUI infrastructure + functional login dialog | Yaniv Kamay | 2009-12-28 | 19 | -174/+2184 | |
| | ||||||
* | client: add gui res files | Yaniv Kamay | 2009-12-28 | 8 | -0/+61469 | |
| | ||||||
* | client: add soft renderer and cegui | Yaniv Kamay | 2009-12-28 | 6 | -8/+697 | |
| | ||||||
* | client: smiplify DisconnectedEvent | Yaniv Kamay | 2009-12-28 | 3 | -28/+16 | |
| | ||||||
* | client: move visibility change logic from screen to app | Yaniv Kamay | 2009-12-28 | 3 | -17/+27 | |
| | ||||||
* | client: wait for disconnect state in RedClient::connect() | Yaniv Kamay | 2009-12-28 | 1 | -2/+7 | |
| | ||||||
* | client: improve screen resizing | Yaniv Kamay | 2009-12-28 | 5 | -36/+110 | |
| | | | | | | | | | | | Screen now have to modes locked and unlocked. In unlocked mode, the application can change screen size and so reduce resolution changing. The application can also choose to change window size while not in full screen mode. In locked mode the application must ewtain locker screen size setting. | |||||
* | client: restore mouse capture state after screen resizing | Yaniv Kamay | 2009-12-28 | 1 | -1/+7 | |
| | ||||||
* | win client: change avcodec version to 51 | Yaniv Kamay | 2009-12-24 | 1 | -2/+2 | |
| | ||||||
* | client: new static title image | Yaniv Kamay | 2009-12-23 | 2 | -610/+389 | |
| |