muine r1237 - in trunk: . libmuine src
- From: lmedinas svn gnome org
- To: svn-commits-list gnome org
- Subject: muine r1237 - in trunk: . libmuine src
- Date: Mon, 10 Nov 2008 00:36:06 +0000 (UTC)
Author: lmedinas
Date: Mon Nov 10 00:36:06 2008
New Revision: 1237
URL: http://svn.gnome.org/viewvc/muine?rev=1237&view=rev
Log:
2008-11-10 Luis Medinas <lmedinas gnome org>
* TODO:
* configure.in:
* libmuine/Makefile.am:
* src/Makefile.am:
* src/PlaylistWindow.cs:
Ditch ColorCellRendererPixbuf and CellRendererText.
Closes bgo #387152.
Modified:
trunk/ChangeLog
trunk/TODO
trunk/configure.in
trunk/libmuine/Makefile.am
trunk/src/Makefile.am
trunk/src/PlaylistWindow.cs
Modified: trunk/TODO
==============================================================================
--- trunk/TODO (original)
+++ trunk/TODO Mon Nov 10 00:36:06 2008
@@ -10,7 +10,6 @@
o Write a simple manual
o Proper RTL support
o Split out PlaylistWindow
-o Ditch ColoredCellRendererPixbuf when we use Gtk 2.8
Tough:
======
@@ -59,8 +58,6 @@
Depends on Freedesktop Bugzilla #2175
o Set Window.IconName on windows
Once we have Gtk 2.6 support in Gtk#
-o Use stock Gtk pixbuf colouring
- Once we have Gtk 2.6 support in Gtk# and a new Gtk release
o Use Gtk.StatusIcon
Once we have Gtk 2.10 support in Gtk#
o Re-enable fixed-height-mode in HandleView
Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in (original)
+++ trunk/configure.in Mon Nov 10 00:36:06 2008
@@ -23,10 +23,10 @@
LIBXINE_REQUIRED=1.0.0
GSTREAMER_REQUIRED=0.10.0
-GTK_REQUIRED=2.6
+GTK_REQUIRED=2.8
ICON_THEME_REQUIRED=2.10
MONO_REQUIRED=1.1
-GTKSHARP_REQUIRED=2.6.0
+GTKSHARP_REQUIRED=2.8.0
TAGLIBSHARP_REQUIRED=2.0.3
MONODOC_REQUIRED=1.1.9
Modified: trunk/libmuine/Makefile.am
==============================================================================
--- trunk/libmuine/Makefile.am (original)
+++ trunk/libmuine/Makefile.am Mon Nov 10 00:36:06 2008
@@ -30,8 +30,6 @@
gsequence.h \
pointer-list-model.c \
pointer-list-model.h \
- rb-cell-renderer-pixbuf.c \
- rb-cell-renderer-pixbuf.h \
db.c \
db.h \
mm-keys.c \
Modified: trunk/src/Makefile.am
==============================================================================
--- trunk/src/Makefile.am (original)
+++ trunk/src/Makefile.am Mon Nov 10 00:36:06 2008
@@ -26,7 +26,6 @@
$(srcdir)/HandleView.cs \
$(srcdir)/HandleModel.cs \
$(srcdir)/StockIcons.cs \
- $(srcdir)/ColoredCellRendererPixbuf.cs \
$(srcdir)/CoverDatabase.cs \
$(srcdir)/CoverGetter.cs \
$(srcdir)/MusicBrainz.cs \
Modified: trunk/src/PlaylistWindow.cs
==============================================================================
--- trunk/src/PlaylistWindow.cs (original)
+++ trunk/src/PlaylistWindow.cs Mon Nov 10 00:36:06 2008
@@ -898,7 +898,7 @@
playlist.Selection.Mode = SelectionMode.Multiple;
- pixbuf_renderer = new ColoredCellRendererPixbuf ();
+ pixbuf_renderer = new Gtk.CellRendererPixbuf ();
text_renderer = new Gtk.CellRendererText ();
text_renderer.Ellipsize = Pango.EllipsizeMode.End;
@@ -2261,7 +2261,7 @@
(TreeViewColumn col, CellRenderer cell, TreeModel model,
TreeIter iter)
{
- ColoredCellRendererPixbuf r = (ColoredCellRendererPixbuf) cell;
+ Gtk.CellRendererPixbuf r = (Gtk.CellRendererPixbuf) cell;
IntPtr handle = playlist.Model.HandleFromIter (iter);
if (handle == playlist.Model.Playing) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]