summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Convert cairo canvas draw_text to using pixmanAlexander Larsson2010-02-231-71/+100
|
* Convert cairo canvas copy bits to pixmanAlexander Larsson2010-02-231-211/+90
|
* Convert cairo canvas draw_copy() to using pixmanAlexander Larsson2010-02-231-20/+60
| | | | This is just identical to draw_blend().
* Convert cairo canvas draw_blend() to using pixmanAlexander Larsson2010-02-231-25/+168
|
* Convert cairo canvas draw_opaque() to using pixmanAlexander Larsson2010-02-231-27/+133
|
* Convert cairo canvas draw_fill() to using pixmanAlexander Larsson2010-02-232-19/+503
|
* Add possibility to not invert bitmask in canvas_get_mask()Alexander Larsson2010-02-234-10/+16
| | | | | This allows the pixman implementation to instead invert the (generally smaller) region instead of duplicating the bitmap to invert it.
* Use pixman_image_t instead of cairo_surface_t as the generic pixman containerAlexander Larsson2010-02-2312-544/+555
| | | | | | 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 interfaceAlexander Larsson2010-02-2314-175/+158
| | | | | | 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 SharedCacheAlexander Larsson2010-02-233-4/+7
| | | | We want this for integration with C-style classes.
* Add pixman_image_t referencing the cairo_canvas bitsAlexander Larsson2010-02-232-0/+45
| | | | | This references the same data as the cairo surface and can be used for drawing to the surface using direct pixman calls instead.
* Add line rasterizerAlexander Larsson2010-02-237-0/+3791
|
* Add pixman utilitiesAlexander Larsson2010-02-237-0/+1071
| | | | | | | | | | | | | 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
* Add emacs settings for indent according to spice styleguideAlexander Larsson2010-02-2333-0/+33
|
* Fix delete vs delete[] mismatchesAlexander Larsson2010-02-102-3/+3
| | | | This fixes a bunch of valgrind warnings.
* Use standard int types and <spice/types.h>Alexander Larsson2010-02-0411-81/+33
|
* Revert automatic renames that were wrongAlexander Larsson2010-02-047-29/+29
| | | | Seems my rename script didn't handle C++ namespaces that well.
* Use the new header namesAlexander Larsson2010-02-0429-33/+33
| | | | | | 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-protocolAlexander Larsson2010-02-0484-2580/+2580
| | | | | | 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
* Remove headers that were moved to spice-protocolAlexander Larsson2010-02-048-2078/+0
|
* Depend on spice-protocol moduleAlexander Larsson2010-02-043-0/+7
| | | | This doesn't actually use the new module, just sets it up for use.
* Filter out XIM X eventsAlexander Larsson2010-02-041-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.
* libspice: add surface 0 supportIzik Eidus2010-01-288-647/+1172
| | | | | | This include alot of infestracture for off screens. Signed-off-by: Izik Eidus <ieidus@redhat.com>
* client: change rerror code to be positiveYaniv Kamay2010-01-111-15/+15
|
* client: add Platform::term_printfYaniv Kamay2010-01-118-72/+134
| | | | | | 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-upYaniv Kamay2010-01-112-4/+10
|
* client: move log file to spicec appdata dirYaniv Kamay2010-01-114-18/+36
|
* server,client: server authentication for secured channels.Yonit Halperin2010-01-1113-52/+741
| | | | | | | | | 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 additonsArnon Gilboa2010-01-073-18/+68
| | | | | | -functions: set_name, remove_command, remove_sub, clear -item state & enum -add state support in RedWindow insert_command & insert_menu
* server: add new vd interface QTerm2InterfaceYaniv Kamay2010-01-062-1/+291
|
* spice: add missing breakArnon Gilboa2010-01-061-0/+1
|
* client: use spice icon instead-of solidice iconYaniv Kamay2010-01-046-189/+285
|
* spice: PKG_CHECK_MODULES: CEGUI versionArnon Gilboa2009-12-301-1/+1
|
* spice: position mouse in primary monitor center after full screen toggleArnon Gilboa2009-12-3010-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 pressedArnon Gilboa2009-12-305-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 LoginDialogYaniv Kamay2009-12-282-4/+25
|
* client: remove splash imageYaniv Kamay2009-12-288-51225/+1
|
* client: add GUI infrastructure + functional login dialogYaniv Kamay2009-12-2819-174/+2184
|
* client: add gui res filesYaniv Kamay2009-12-288-0/+61469
|
* client: add soft renderer and ceguiYaniv Kamay2009-12-287-8/+702
|
* client: smiplify DisconnectedEventYaniv Kamay2009-12-283-28/+16
|
* client: move visibility change logic from screen to appYaniv Kamay2009-12-283-17/+27
|
* client: wait for disconnect state in RedClient::connect()Yaniv Kamay2009-12-281-2/+7
|
* client: improve screen resizingYaniv Kamay2009-12-285-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 resizingYaniv Kamay2009-12-281-1/+7
|
* use spaces instead of tabs in bitmap_to_c and icon_to_c outputYaniv Kamay2009-12-282-17/+21
|
* win client: change avcodec version to 51Yaniv Kamay2009-12-241-2/+2
|
* spice: fix server crush in case connecting without qxl deviceIzik Eidus2009-12-241-0/+3
| | | | Signed-off-by: Izik Eidus <ieidus@redhat.com>
* spice client: fix wrong gdi-canvas handling of blend_alphaIzik Eidus2009-12-231-6/+14
| | | | Signed-off-by: Izik Eidus <ieidus@redhat.com>
* client: new static title imageYaniv Kamay2009-12-232-610/+389
|