annotate Lang/ITranslatableWithActions.cs @ 28:73c1e3372b52

Re #47: Add translatable GTK# widgets * Add translatable button now that we know how to use it (with work-around for losing stock icon)
author IBBoard <dev@ibboard.co.uk>
date Thu, 30 Dec 2010 20:58:47 +0000
parents 06715f517af6
children 70c46caee508
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
1 // This file (ITranslatableWithActions.cs) is a part of the IBBoard.GtkSharp project and is copyright 2010 IBBoard
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
2 //
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
3 // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
4
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
5 using System;
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
6 using IBBoard.Lang;
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
7 using Gtk;
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
8 using System.Collections.Generic;
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
9
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
10 namespace IBBoard.GtkSharp
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
11 {
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
12 public interface ITranslatableWithActions : ITranslatable
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
13 {
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
14 ICollection<Action> Actions { get; }
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
15 }
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
16 }
06715f517af6 Re #47: Add translatable GTK# widgets
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
17