382 Commits (master)

Author SHA1 Message Date
Daniel Narvaez 680c501ad6 Add a binding for gconf_client_set_list (using strings) 11 years ago
Daniel Narvaez 6202d4d5cc Bind xdgmime in SugarExt
And use it in the sugar3.mime modules. This allows
to get rid of the pygtk generated sugarbase module,
along with the wrapping code.

Also add more cases to test_time to make sure
everything is still working.
11 years ago
Daniel Narvaez e6397cf2db Some initial infrastructure for UI tests
The uitree module exposes the at-spi tree. We can use it to do
functional tests of the UI, by checking if the expected
widgets exists, clicking them etc.

A simple example of how this can be used is in the test, which
runs a window and check that it has the expected button.
11 years ago
Daniel Narvaez 5ea6472e0d Add missing dependencies
I'm not sure how it works with GNU ld, but it breaks with ld
gold and it's clearly wrong anyway.
11 years ago
Simon Schampijer 8357ccc4ea Release 0.98.3 12 years ago
Simon Schampijer 5b438e797a Release 0.98.2 12 years ago
Simon Schampijer 4de6057e1b Release 0.98.1 12 years ago
Simon Schampijer 783db60027 Release 0.98.0 12 years ago
Simon Schampijer d87967303c Release 0.97.13 12 years ago
Simon Schampijer 43bd520f3d Release 0.97.12 12 years ago
Simon Schampijer 936ebaa382 Release 0.97.11 12 years ago
Simon Schampijer 458e357585 Release 0.97.10 12 years ago
Simon Schampijer dcfc92dbd0 Release 0.97.9 12 years ago
Simon Schampijer 63a34191b1 Release 0.97.8 12 years ago
Simon Schampijer a2d2c79d5d Release 0.97.7 12 years ago
Simon Schampijer 23399f51dd Release 0.97.6 12 years ago
Simon Schampijer 31d6e6dd1e Release 0.97.5 12 years ago
Simon Schampijer 1da1f4a1ca Release 0.97.4 12 years ago
Simon Schampijer 6387b20c31 Release 0.97.3 12 years ago
Carlos Garnacho ade02f958b event-controller: Add separate library for event controllers
SugarEventController is an abstract object that attaches to a widget
and interprets an arbitrary set of events. Implementations of that
object get to define the sequence of events that trigger these.

The basic touch gestures (long press, rotate, swipe, zoom) have
been implemented on top of that object.

Signed-off-by: Carlos Garnacho <carlos@lanedo.com>
Acked-by: Simon Schampijer <simon@laptop.org>
12 years ago
Simon Schampijer 4cf9ce0357 Release 0.97.2 12 years ago
Manuel Quiñones 1334cd5768 Release 0.97.1 12 years ago
Simon Schampijer db86a7282e Release 0.97.0 12 years ago
Simon Schampijer 512f14974e Release 0.96.4 12 years ago
Simon Schampijer e97e5cac6d Release 0.96.3 12 years ago
Simon Schampijer 439d3bf08d Release 0.96.2 12 years ago
Simon Schampijer 47c838acd8 Release 0.96.1 12 years ago
Simon Schampijer abe02123b7 Release 0.96.0 12 years ago
Simon Schampijer db2bcbb76b Release 0.95.6 12 years ago
Simon Schampijer f8c68b8330 Update ALL_LINGUAS
- remove qu (code change for Quechua to quz)
- remove ay (code change for Aymara to aym)
- remove cpp [Crioulo] no L10n planned at present
- remove pis [Solomon Islands Pidgin] no L10n planned at present
- remove tpi [Papua New Guinea Pidgin (Tok Pisin)] no L10n planned at present

Signed-off-by: Chris Leonard
Acked-by: Simon Schampijer <simon@laptop.org>
12 years ago
Simon Schampijer 38d881da7a Release 0.95.5 12 years ago
Sascha Silbe c653cdf4dc configure.ac: Require gobject-introspection
configure.ac already checked if gobject-introspection is installed, but
instead of aborting with an error it continued and silently omitted crucial
parts of the build system, confusing the user with the error message

make[4]: *** No rule to make target `SugarExt-1.0.gir', needed by `all-am'.  Stop.

much later in the build. Fix this by using the appropriate autoconf macro.

Signed-off-by: Sascha Silbe <silbe@activitycentral.com>
Acked-by: Simon Schampijer <simon@laptop.org>
12 years ago
Simon Schampijer 7344db525d Release 0.95.4 12 years ago
Simon Schampijer 3ec2aca749 Release 0.95.3 12 years ago
Simon Schampijer 6499ce596d Release 0.95.2 13 years ago
Simon Schampijer f05f221f79 Fix the installation of languages
The GETTEXT_PACKAGE name must match the repository
name. Found when packaging for Fedora.

Signed-off-by: Simon Schampijer <simon@laptop.org>
Acked-by: Daniel Drake <dsd@laptop.org>
13 years ago
Daniel Drake 4e137f6e4f sugar-activity: import and make independent of sugar-toolkit GTK versions
As we move to adding support for a second UI toolkit (GTK+ 3.x),
the sugar-activity binary used by all activities must become
backend-toolkit-independent. It would be wasteful to have two backend
toolkits loaded in memory, and in the GTK2/GTK3 case, it is impossible
(importing both results in an instant crash).

To achieve this, we split the existing sugar-toolkit activity/main.py:main()
functionality into two parts, moving it into the sugar-activity binary and
the Activity class as follows:
 1. All toolkit-specific stuff is moved into the Activity class (i.e.
   everything that interacts with GTK)
 2. Everything that can be reasonably/easily moved into the Activity class
   is also moved.
 3. What remains is the stuff that is inherently involved with the
   construction of the Activity object, not related to UI toolkits. This
   is moved into the sugar-activity binary.

main.py is then removed from sugar-toolkit, and sugar-activity is moved
from sugar to sugar-toolkit-gtk3 in order to keep toolkit-related code
with the toolkit itself.

With this work done, the one remaining question is how to invoke the main
loop. An optional run_main_loop() method is added to the activity class,
for GTK2 this will run the GTK2 main loop, for GTK3 the GTK3 main loop will
be run, etc.

Signed-off-by: Daniel Drake <dsd@laptop.org>
13 years ago
Daniel Drake e2c07af748 Import sugar-base into sugar-toolkit
Probably needs cleaning up a bit. And we use pygtk-codegen, ugh...

This is the commit id when we imported sugar-base:
b9406e5c9c9df5404c5b0d995178b5edb4d93628

Signed-off-by: Daniel Drake <dsd@laptop.org>
[squashed two patches into one]
Signed-off-by: Sascha Silbe <silbe@activitycentral.com>
13 years ago
Raul Gutierrez Segales 3372317922 Add wrapper for rsvg
Signed-off-by: Raul Gutierrez Segales <rgs@collabora.co.uk>
[split patch into several parts]
Signed-off-by: Sascha Silbe <silbe@activitycentral.com>
13 years ago
Raul Gutierrez Segales 0d3057941f configure.ac: replace PyGTK dependency with GTK3 dependencies
Signed-off-by: Raul Gutierrez Segales <rgs@collabora.co.uk>
[split patch into several parts, added description]
Signed-off-by: Sascha Silbe <silbe@activitycentral.com>
13 years ago
Simon Schampijer 10d7f7d3f9 Switch sugarext to be an introspectable library
This makes sugarext accessible through introspection. It is used
from the shell (key grabber, sound volume management) and the
shell session management.

Making the sugarext introspectable was done following the
descriptions at: http://live.gnome.org/GObjectIntrospection#Using_GI

Signed-off-by: Simon Schampijer <simon@schampijer.de>
13 years ago
Simon Schampijer 000ed75cbe Rename the module to sugar3
The old gtk-2 based module will be present in
the 0.94 branch in the sugar-toolkit.

Signed-off-by: Simon Schampijer <simon@laptop.org>
Acked-by: Sascha Silbe <silbe@activitycentral.com>
13 years ago
Simon Schampijer f766da335c Release 0.95.1 13 years ago
Simon Schampijer 7ecfbc6cd0 Release 0.93.4 13 years ago
Simon Schampijer 4e8a50163e Release 0.93.3 13 years ago
Simon Schampijer 51496ff5b8 Release 0.93.2 13 years ago
Simon Schampijer 1d27039180 Release 0.92.0 13 years ago
Simon Schampijer db46363e9d Release 0.90.2 14 years ago
Simon Schampijer b91c2102b4 Release 0.90.1 14 years ago
Simon Schampijer 969421b0d5 Release 0.90.0 14 years ago
Simon Schampijer e398f58e92 Release 0.89.5 14 years ago
Simon Schampijer 7746dd72b7 Release 0.89.4 14 years ago
Simon Schampijer d6da506dfd Release 0.89.3 14 years ago
Simon Schampijer 4dc2b3db23 Release 0.89.2 14 years ago
Daniel Drake 4fdf632c18 Revert "Release 0.84.12"
This reverts commit 658123fe81.

Sorry, screwed up, this was on the wrong branch :(
14 years ago
Daniel Drake 658123fe81 Release 0.84.12 14 years ago
Tomeu Vizoso 29aa609b57 Release 0.89.1 14 years ago
Simon Schampijer 5186c941f0 Release 0.88.1 14 years ago
Tomeu Vizoso 25e57e3766 Release 0.88.0 14 years ago
Simon Schampijer 94206cd9bd Release 0.87.9 14 years ago
Simon Schampijer 24c3509106 Release 0.87.8 14 years ago
Simon Schampijer d8d714af48 Release 0.87.7 14 years ago
Bernie Innocenti d27511f1cb autogen.sh: pass --enable-maintainer-mode to configure 14 years ago
Simon Schampijer 5f3a8da9eb Release 0.87.6 14 years ago
Simon Schampijer fdc1706492 Release 0.87.5 14 years ago
Simon Schampijer ca4be919e7 Updated ALL_LINGUAS 14 years ago
Simon Schampijer 47f71a33bd Release 0.87.4 14 years ago
Simon Schampijer e82073fbd2 Release 0.87.3 15 years ago
Simon Schampijer ec7464bdcd Release 0.87.2 15 years ago
Simon Schampijer 28a3515416 Release 0.87.1 15 years ago
Aleksey Lim 6ef9abe801 Bump v0.86.2 15 years ago
Simon Schampijer 845100cfa0 Release 0.86.1 15 years ago
Tomeu Vizoso e1b251bacc Release 0.86.0 15 years ago
Tomeu Vizoso 2251e7c97f Release 0.85.9 15 years ago
Tomeu Vizoso f4d91d569e Release 0.85.8 15 years ago
Tomeu Vizoso 8e3e7dd8ad Release 0.85.7 15 years ago
Tomeu Vizoso fb326f78fb Release 0.85.6 15 years ago
Simon Schampijer 3ce0a0253b Release 0.85.5 15 years ago
Tomeu Vizoso 88f6e1aa02 Release 0.85.4 15 years ago
Tomeu Vizoso d5999d34ce Release 0.85.3 15 years ago
Tomeu Vizoso 525346ed43 Release 0.85.2 15 years ago
Tomeu Vizoso 800bbb973a Release 0.85.1 15 years ago
Simon Schampijer 1f39f509b3 Release 0.84.0 15 years ago
Simon Schampijer 1e69d8554c Release 0.83.7 15 years ago
Tomeu Vizoso 40e9983ba3 Release 0.83.6 15 years ago
Simon Schampijer df247733a2 Release 0.83.5 15 years ago
Simon Schampijer 71c4e767e0 Release 0.83.4 15 years ago
Simon Schampijer 1fd893f86e Release 0.83.3 16 years ago
Simon Schampijer 0157f427ab Release 0.83.2 16 years ago
Simon Schampijer 9dcc432ae1 "Release version 0.83.1" 16 years ago
Tomeu Vizoso be32d3fb67 Remove the clipboard service wrapper 16 years ago
Marco Pesenti Gritti be014cc270 Alsa based volume control API, stealed from gnome-settings-daemon. #8375 16 years ago
Tomeu Vizoso c3873bfdcb Bump to 0.82.1, marco forgot to commit the configure change when releasing 16 years ago
Marco Pesenti Gritti e3861325f4 Add dependency on libICE 16 years ago
Marco Pesenti Gritti 3ce887ce90 Add dep on libSM 16 years ago
Marco Pesenti Gritti 9a827ead86 Enable maximum warnings.
A bunch of compile fixes.
16 years ago
Simon Schampijer f37f2bc121 Reease 0.82.0 16 years ago
Simon Schampijer e6decf93da Release 0.81.8 16 years ago
Marco Pesenti Gritti a46dcf534c Release 0.81.7 16 years ago
Tomeu Vizoso 1937512d95 Release 0.81.6 16 years ago