~ubuntu-branches/ubuntu/lucid/awn-extras-applets/lucid

« back to all changes in this revision

Viewing changes to applets/maintained/awnterm/awn-terminal.vala

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2010-03-30 20:26:40 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100330202640-vza3bdnv9gc9bg5z
Tags: 0.4.0~rc1-0ubuntu1
* New upstream release (rc1) (LP: #551309)
 - Stack applet close on click (LP: #261520)
* debian/patches/
 - 03-remove-cairo-menu-pref.patch: From upstream (r1244 + r1245 + r1252),
   remove menu entry for cairo-menu preferences, it's not implemented
   (LP: #511254)
 - 04-tomboy-threading-free.patch: From upstream (r1246), remove threading to
   make the applet working. 
* debian/*.install: Update installation location of comics and digital 
  applets.
* debian/control: 
 - Move digital applet from python to C, and add proper Replaces.
 - Add Replaces for awn-applets-c-core to handle migration from 0.3.2.2.
   (LP: #524559)

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
    this.canonical_name = canonical_name;
118
118
    this.uid = uid;
119
119
    this.panel_id = panel_id;
120
 
    this.display_name = "Awn Terminal Applet";
 
120
    this.display_name = "Terminal";
121
121
  }
122
122
 
123
123
  construct
582
582
    (widget as Gtk.Entry).focus_out_event.connect ((w, e) =>
583
583
    {
584
584
      this.terminal_command = (w as Gtk.Entry).get_text ();
 
585
      return false;
585
586
    });
586
587
    align.add (widget);
587
588
 
604
605
public Applet
605
606
awn_applet_factory_initp (string canonical_name, string uid, int panel_id)
606
607
{
607
 
  Intl.setlocale (LocaleCategory.ALL, "");
608
608
  Gettext.bindtextdomain (Build.GETTEXT_PACKAGE, Build.LOCALEDIR);
609
609
  Gettext.textdomain (Build.GETTEXT_PACKAGE);
610
610