Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First off, I want to apologize for the non-minimal code. I'll point to the part I believe is important for the question further down. As a whole the code should run and work with Pidgin (under Linux) as a minimal chat with every chat at once. It can also be started with --demo-flag if you don't have Pidgin, but are a gtk-wizard.

Now to the problem:

Due to the fact that I want several conversations in parallel, I've made it so that each row has its own background color (overriding the gtk-theme) depending on who said the message of that line (also having a matching color for my messages to the same person).

With the default selection behavior, it looks really dull/bad. So my question is:

Is there a way to make the selection of the active row to look like the black rectangle of the 'Nothing!'-row (or something similar) and not like the usual one two rows below?

Example:

As a bonus: Is it possible to make the rows look like the last row with no space between the cells (but still space between the rows)?

The full code:

#!/usr/bin/env python

import pygtk
pygtk.require("2.0")
import gtk
import dbus
import gobject
from dbus.mainloop.glib import DBusGMainLoop
import pynotify
import time
import re
from colorsys import hls_to_rgb
import sys

def get_color(name, sending=False):

    hue = sum([ord(c) * (i + 1) * ((i % 2) * 2 - 1)
        for i, c in enumerate(name)]) % 255

    lightness = 180 + sending * 40

    saturation = 150 + (sending == False) * 50

    scale = 255.0

    rgb = hls_to_rgb(hue/scale,
        lightness/scale,
        saturation/scale)

    rgb_str = "".join([hex(int(v*scale))[2:] for v in rgb])

    return "#{0}".format(rgb_str)

def get_time():

    t = time.localtime()
    h = str(t[3]).zfill(2)
    m = str(t[4]).zfill(2)
    t = "{0}:{1}".format(h, m)
    return t

def dbus_stack(id, sender, message, conv, *args, **kwargs):

    v.set_msg(get_time(), sender.split("@")[0], message, conv)

class View(object):

    DIRECTION = 0
    TIME = 1
    WHO = 2
    WHAT = 3
    ID = 4
    BG_COLOR = 5
    FG_COLOR = 6
    HEADERS = ('', 'Time', 'Who', 'Message', 'Id', 'Bg-color', 'Fg-color')

    def __init__(self, purple):

        self.w = gtk.Window()
        if purple is None:
            self.w.set_title('Demo-mode')
        else:
            self.w.set_title('Purple-in-one')

        self.w.connect("delete_event", gtk.main_quit)
        vbox = gtk.VBox(False, 0)
        self.w.add(vbox)

        self._purple = purple

        self.store = gtk.ListStore(
            str,  # DIRECTION
            str,  # TIME
            str,  # WHO
            str,  # WHAT
            str,  # FULL WHO
            str,  # BG_COLOR
            str,  # FG_COLOR
            )

        self.treeview = gtk.TreeView(self.store)
        sel = self.treeview.get_selection()
        sel.connect("changed", self.set_to_text)
        self.scrolled = gtk.ScrolledWindow()
        self.treeview.connect("size-allocate", self.scroll)

        self.scrolled.add(self.treeview)

        for i in (self.DIRECTION, self.TIME, self.WHO, self.WHAT):
            title = self.HEADERS[i]
            cell = gtk.CellRendererText()
            if i == self.WHAT:
                cell.props.wrap_width = 350
                cell.props.wrap_mode = gtk.WRAP_WORD
                col = gtk.TreeViewColumn(title, cell,
                    text=i, background=self.BG_COLOR,
                    foreground=self.FG_COLOR)
            else:
                col = gtk.TreeViewColumn(title, cell,
                    text=i, background=self.BG_COLOR,
                    foreground=self.FG_COLOR)
            col.set_resizable(True)
            col.set_spacing(0)
            self.treeview.append_column(col)
        self.treeview.set_size_request(-1, 200)
        hbox = gtk.HBox(False, 0)
        self.to_whom = gtk.Label()
        self.to_whom.set_text("All")
        hbox.pack_start(self.to_whom, False, False, 0)
        self.text = gtk.Entry()
        self.text.connect("activate", self.send)
        hbox.pack_start(self.text, True, True, 0)
        button = gtk.Button(label="Send")
        button.connect("clicked", self.send)
        hbox.pack_end(button, False, False, 0)

        vbox.pack_start(hbox, False, False, 0)
        vbox.pack_end(self.scrolled, True, True, 0)
        self.w.show_all()

        #Add fake messages
        if purple is None:

            for w, id in (('Friend', '1'), ('Foe', '2')):
                for m in ('Hello', 'What do you want?'):
                    self.set_msg(get_time(), w, m, id)

    def pidgin_to_markup(self, text):

        for tag, to_tag in (('html', ''), ('body', ''), ('p', '')):
            text = re.sub(r"(</?){0}.*?(>)".format(tag), to_tag, text)

        return text

    def bounce_to_entry(self, *args, **kwargs):

        self.text.grab_focus()
        return False

    def set_to_text(self, selection):

        data, rows = selection.get_selected_rows()
        if len(rows) == 0:
            t = 'To All:'
        else:
            t = "To {0}:".format(data[rows[0]][self.WHO].split("@")[0].split(".")[0])

        self.to_whom.set_text(t)
        gobject.timeout_add(10, self.bounce_to_entry)

    def send(self, widget, *args, **kwargs):

        sel = self.treeview.get_selection()
        data, rows = sel.get_selected_rows()
        if len(rows) > 0:
            to_all = False
        else:
            to_all = True

        t = gobject.markup_escape_text(self.text.get_text())
        sent_i = 0

        if to_all:
            w = 'All'
            id = ""
        else:
            w = data[rows[0]][self.WHO]
            id = data[rows[0]][self.ID]

        if t != "":

            if self._purple is None:

                id = ""
                self.set_msg("{0}".format(get_time()),
                    w, t, id, sending=True)
                sent_i += 1

            else:

                for conv in self._purple.PurpleGetIms():

                    if to_all or data[rows[0]][self.ID] == str(conv):

                        self._purple.PurpleConvImSend(
                            purple.PurpleConvIm(conv),
                            t)


                        self.set_msg("{0}".format(get_time()),
                            w, t, id, sending=True)

                        sent_i += 1

        if sent_i == 0:

            s = "Message '{0}' to {1} got lost".format(t,
                    ['All', 'Someone'][to_all==False])
            print s

        self.text.set_text("")

    def scroll(self, *args, **kwargs):

        adj = self.scrolled.get_vadjustment()
        adj.set_value(0)

    def set_msg(self, t, w, m, w2, sending=False):
        if sending == True:
            d_str = ">"
        else:
            d_str = "<"

        m = self.pidgin_to_markup(m)

        self.store.insert(0, (d_str, t, w, m, w2,
            get_color(w, sending=sending), "#000000"))
        if self.text.get_text() == "":
            sel = self.treeview.get_selection()
            if len(self.store) > 0:
                sel.select_iter(self.store[0].iter)
            self.text.grab_focus()

#
# START STUFF
#

if __name__ == "__main__":

    if len(sys.argv) > 1 and sys.argv[1].upper() in ('-D', '--DEMO'):
        as_demo = True
    else:
        as_demo = False

    pynotify.init("Pidgin Proxy")

    if not as_demo:
        DBusGMainLoop(set_as_default=True)

        bus = dbus.SessionBus()

        purple = bus.get_object("im.pidgin.purple.PurpleService",
                    "/im/pidgin/purple/PurpleObject",
                    "im.pidgin.purple.PurpleInterface")

    else:
        purple = None

    v = View(purple)

    if not as_demo:

        bus.add_signal_receiver(dbus_stack,
            dbus_interface="im.pidgin.purple.PurpleInterface",
            signal_name='ReceivedImMsg')

    gtk.main()

As far as my guesses go, I think I need to do something to or connect a listener to one of these from the __init__:

    self.treeview = gtk.TreeView(self.store)
    sel = self.treeview.get_selection()
    sel.connect("changed", self.set_to_text)
    self.scrolled = gtk.ScrolledWindow()
    self.treeview.connect("size-allocate", self.scroll)

I found this question, which is the closest as far as I can see, but either I don't fully grasp the answers or it is not quite what I want.

And a final comment to the code, it is in a prototype stage, and has some other issues as well so don't expect the app to work too smooth...

Edit:

I solved it by moving to Python3 and Gtk3 using CSS to dynamically update the style. You can find the answer here

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.