[longomatch] More Gui fixes (windows titles, dialog transient,...)
- From: Andoni Morales Alastruey <amorales src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [longomatch] More Gui fixes (windows titles, dialog transient,...)
- Date: Thu, 17 Sep 2009 17:50:12 +0000 (UTC)
commit 1e8cb507b87ff4a04825b9533430bce9e31c1d48
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date: Wed Sep 16 19:19:31 2009 +0200
More Gui fixes (windows titles, dialog transient,...)
LongoMatch/Gui/Component/ProjectDetailsWidget.cs | 17 ++--
.../{Component => Dialog}/TeamTemplateEditor.cs | 0
LongoMatch/LongoMatch.mdp | 2 +-
LongoMatch/Makefile.am | 4 +-
...ongoMatch.Gui.Component.ProjectDetailsWidget.cs | 3 +
...Match.Gui.Dialog.ProjectTemplateEditorDialog.cs | 2 +-
LongoMatch/gtk-gui/LongoMatch.Gui.MainWindow.cs | 14 +-
LongoMatch/gtk-gui/gui.stetic | 122 ++++++++++----------
LongoMatch/gtk-gui/objects.xml | 16 ++--
9 files changed, 93 insertions(+), 87 deletions(-)
---
diff --git a/LongoMatch/Gui/Component/ProjectDetailsWidget.cs b/LongoMatch/Gui/Component/ProjectDetailsWidget.cs
index ede309e..662c001 100644
--- a/LongoMatch/Gui/Component/ProjectDetailsWidget.cs
+++ b/LongoMatch/Gui/Component/ProjectDetailsWidget.cs
@@ -353,6 +353,7 @@ namespace LongoMatch.Gui.Component
protected virtual void OnEditbuttonClicked (object sender, System.EventArgs e)
{
ProjectTemplateEditorDialog ted = new ProjectTemplateEditorDialog();
+ ted.TransientFor = (Window)Toplevel;
ted.Sections = Sections;
if (ted.Run() == (int)ResponseType.Apply){
@@ -381,26 +382,24 @@ namespace LongoMatch.Gui.Component
protected virtual void OnLocaltemplatebuttonClicked (object sender, System.EventArgs e){
TeamTemplateEditor tted = new TeamTemplateEditor();
-
+ tted.TransientFor = (Window)Toplevel;
+ tted.Title=Catalog.GetString("Local Team Template");
tted.SetTeamTemplate(LocalTeamTemplate);
if (tted.Run() == (int)ResponseType.Apply){
LocalTeamTemplate = tted.GetTeamTemplate();
}
tted.Destroy();
- }
-
+ }
protected virtual void OnVisitorbuttonClicked (object sender, System.EventArgs e){
TeamTemplateEditor tted = new TeamTemplateEditor();
+ tted.TransientFor = (Window)Toplevel;
+ tted.Title=Catalog.GetString("Visitor Team Template");
tted.SetTeamTemplate(VisitorTeamTemplate);
if (tted.Run() == (int)ResponseType.Apply){
VisitorTeamTemplate = tted.GetTeamTemplate();
}
tted.Destroy();
- }
-
-
-
- }
-
+ }
+ }
}
diff --git a/LongoMatch/Gui/Component/TeamTemplateEditor.cs b/LongoMatch/Gui/Dialog/TeamTemplateEditor.cs
similarity index 100%
rename from LongoMatch/Gui/Component/TeamTemplateEditor.cs
rename to LongoMatch/Gui/Dialog/TeamTemplateEditor.cs
diff --git a/LongoMatch/LongoMatch.mdp b/LongoMatch/LongoMatch.mdp
index fcf53e8..99188c4 100644
--- a/LongoMatch/LongoMatch.mdp
+++ b/LongoMatch/LongoMatch.mdp
@@ -136,7 +136,6 @@
<File name="Gui/Component/ProjectListWidget.cs" subtype="Code" buildaction="Compile" />
<File name="Gui/Dialog/TemplatesEditor.cs" subtype="Code" buildaction="Compile" />
<File name="Gui/Component/ProjectTemplateWidget.cs" subtype="Code" buildaction="Compile" />
- <File name="Gui/Component/TeamTemplateEditor.cs" subtype="Code" buildaction="Compile" />
<File name="Gui/TreeView/CategoriesTreeView.cs" subtype="Code" buildaction="Compile" />
<File name="Gui/Dialog/Migrator.cs" subtype="Code" buildaction="Compile" />
<File name="Gui/Component/TimeLineWidget.cs" subtype="Code" buildaction="Compile" />
@@ -155,6 +154,7 @@
<File name="gtk-gui/LongoMatch.Gui.Component.PlaysListTreeWidget.cs" subtype="Code" buildaction="Compile" />
<File name="gtk-gui/LongoMatch.Gui.Component.PlayersListTreeWidget.cs" subtype="Code" buildaction="Compile" />
<File name="gtk-gui/LongoMatch.Gui.Dialog.ProjectTemplateEditorDialog.cs" subtype="Code" buildaction="Compile" />
+ <File name="Gui/Dialog/TeamTemplateEditor.cs" subtype="Code" buildaction="Compile" />
</Contents>
<References>
<ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
diff --git a/LongoMatch/Makefile.am b/LongoMatch/Makefile.am
index 6340adc..0ef2596 100644
--- a/LongoMatch/Makefile.am
+++ b/LongoMatch/Makefile.am
@@ -143,8 +143,7 @@ FILES = \
Gui/Component/ProjectDetailsWidget.cs \
Gui/Component/ProjectListWidget.cs \
Gui/Component/ProjectTemplateWidget.cs \
- Gui/Component/TeamTemplateEditor.cs \
- Gui/Component/TeamTemplateWidget.cs \
+ Gui/Component/TeamTemplateWidget.cs\
Gui/Component/TimeAdjustWidget.cs \
Gui/Component/TimeLineWidget.cs \
Gui/Component/TimeReferenceWidget.cs \
@@ -162,6 +161,7 @@ FILES = \
Gui/Dialog/ProjectTemplateEditorDialog.cs \
Gui/Dialog/SnapshotsDialog.cs \
Gui/Dialog/TemplatesEditor.cs \
+ Gui/Dialog/TeamTemplateEditor.cs\
Gui/Dialog/UpdateDialog.cs \
Gui/Dialog/VideoEditionProperties.cs \
Gui/Dialog/Win32CalendarDialog.cs \
diff --git a/LongoMatch/gtk-gui/LongoMatch.Gui.Component.ProjectDetailsWidget.cs b/LongoMatch/gtk-gui/LongoMatch.Gui.Component.ProjectDetailsWidget.cs
index 05dc1e7..725d68f 100644
--- a/LongoMatch/gtk-gui/LongoMatch.Gui.Component.ProjectDetailsWidget.cs
+++ b/LongoMatch/gtk-gui/LongoMatch.Gui.Component.ProjectDetailsWidget.cs
@@ -158,6 +158,7 @@ namespace LongoMatch.Gui.Component {
this.localtemplatebutton.Label = "gtk-edit";
this.hbox1.Add(this.localtemplatebutton);
Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(this.hbox1[this.localtemplatebutton]));
+ w5.PackType = ((Gtk.PackType)(1));
w5.Position = 1;
w5.Expand = false;
w5.Fill = false;
@@ -188,6 +189,7 @@ namespace LongoMatch.Gui.Component {
this.visitorbutton.Label = "gtk-edit";
this.hbox2.Add(this.visitorbutton);
Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(this.hbox2[this.visitorbutton]));
+ w8.PackType = ((Gtk.PackType)(1));
w8.Position = 1;
w8.Expand = false;
w8.Fill = false;
@@ -218,6 +220,7 @@ namespace LongoMatch.Gui.Component {
this.editbutton.Label = "gtk-edit";
this.hbox3.Add(this.editbutton);
Gtk.Box.BoxChild w11 = ((Gtk.Box.BoxChild)(this.hbox3[this.editbutton]));
+ w11.PackType = ((Gtk.PackType)(1));
w11.Position = 1;
w11.Expand = false;
w11.Fill = false;
diff --git a/LongoMatch/gtk-gui/LongoMatch.Gui.Dialog.ProjectTemplateEditorDialog.cs b/LongoMatch/gtk-gui/LongoMatch.Gui.Dialog.ProjectTemplateEditorDialog.cs
index 9f648e8..8dff2e5 100644
--- a/LongoMatch/gtk-gui/LongoMatch.Gui.Dialog.ProjectTemplateEditorDialog.cs
+++ b/LongoMatch/gtk-gui/LongoMatch.Gui.Dialog.ProjectTemplateEditorDialog.cs
@@ -21,7 +21,7 @@ namespace LongoMatch.Gui.Dialog {
Stetic.Gui.Initialize(this);
// Widget LongoMatch.Gui.Dialog.ProjectTemplateEditorDialog
this.Name = "LongoMatch.Gui.Dialog.ProjectTemplateEditorDialog";
- this.Title = Mono.Unix.Catalog.GetString("Template Editor");
+ this.Title = Mono.Unix.Catalog.GetString("Project Template");
this.Icon = Stetic.IconLoader.LoadIcon(this, "longomatch", Gtk.IconSize.Dialog, 48);
this.WindowPosition = ((Gtk.WindowPosition)(4));
this.Modal = true;
diff --git a/LongoMatch/gtk-gui/LongoMatch.Gui.MainWindow.cs b/LongoMatch/gtk-gui/LongoMatch.Gui.MainWindow.cs
index dca82f8..9291a6d 100644
--- a/LongoMatch/gtk-gui/LongoMatch.Gui.MainWindow.cs
+++ b/LongoMatch/gtk-gui/LongoMatch.Gui.MainWindow.cs
@@ -29,7 +29,7 @@ namespace LongoMatch.Gui {
private Gtk.Action ProjectsManagerAction;
- private Gtk.Action SectionsTemplatesManagerAction;
+ private Gtk.Action CategoriesTemplatesManagerAction;
private Gtk.Action ViewAction;
@@ -132,9 +132,9 @@ namespace LongoMatch.Gui {
this.ProjectsManagerAction = new Gtk.Action("ProjectsManagerAction", Mono.Unix.Catalog.GetString("Projects Manager"), null, null);
this.ProjectsManagerAction.ShortLabel = Mono.Unix.Catalog.GetString("Database Manager");
w1.Add(this.ProjectsManagerAction, null);
- this.SectionsTemplatesManagerAction = new Gtk.Action("SectionsTemplatesManagerAction", Mono.Unix.Catalog.GetString("Sections Templates Manager"), null, null);
- this.SectionsTemplatesManagerAction.ShortLabel = Mono.Unix.Catalog.GetString("Templates Manager");
- w1.Add(this.SectionsTemplatesManagerAction, null);
+ this.CategoriesTemplatesManagerAction = new Gtk.Action("CategoriesTemplatesManagerAction", Mono.Unix.Catalog.GetString("Categories Templates Manager"), null, null);
+ this.CategoriesTemplatesManagerAction.ShortLabel = Mono.Unix.Catalog.GetString("Templates Manager");
+ w1.Add(this.CategoriesTemplatesManagerAction, null);
this.ViewAction = new Gtk.Action("ViewAction", Mono.Unix.Catalog.GetString("_View"), null, null);
this.ViewAction.ShortLabel = Mono.Unix.Catalog.GetString("_View");
w1.Add(this.ViewAction, "<Control>t");
@@ -197,7 +197,7 @@ namespace LongoMatch.Gui {
this.menubox.Name = "menubox";
this.menubox.Spacing = 6;
// Container child menubox.Gtk.Box+BoxChild
- this.UIManager.AddUiFromString("<ui><menubar name='menubar1'><menu name='FileAction' action='FileAction'><menuitem name='NewPojectAction' action='NewPojectAction'/><menuitem name='OpenProjectAction' action='OpenProjectAction'/><menuitem name='SaveProjectAction' action='SaveProjectAction'/><menuitem name='CloseProjectAction' action='CloseProjectAction'/><separator/><menuitem name='QuitAction' action='QuitAction'/></menu><menu name='ToolsAction' action='ToolsAction'><menuitem name='ProjectsManagerAction' action='ProjectsManagerAction'/><menuitem name='SectionsTemplatesManagerAction' action='SectionsTemplatesManagerAction'/><menuitem name='TeamsTemplatesManagerAction' action='TeamsTemplatesManagerAction'/><menuitem name='ExportProjectToCSVFileAction' action='ExportProjectToCSVFileAction'/></menu><menu name='ViewAction' action='ViewAction'><menuitem name='FullScreenAction' action='FullScreenAction'/><menuitem name='HideAllWidgetsAction' action='HideAllWidgetsAction'/
><separator/><menuitem name='PlaylistAction' action='PlaylistAction'/><menuitem name='DrawingToolAction' action='DrawingToolAction'/><separator/><menuitem name='CaptureModeAction' action='CaptureModeAction'/><menuitem name='AnalyzeModeAction' action='AnalyzeModeAction'/></menu><menu name='HelpAction' action='HelpAction'><menuitem name='AboutAction' action='AboutAction'/><menuitem name='HelpAction1' action='HelpAction1'/></menu></menubar></ui>");
+ this.UIManager.AddUiFromString("<ui><menubar name='menubar1'><menu name='FileAction' action='FileAction'><menuitem name='NewPojectAction' action='NewPojectAction'/><menuitem name='OpenProjectAction' action='OpenProjectAction'/><menuitem name='SaveProjectAction' action='SaveProjectAction'/><menuitem name='CloseProjectAction' action='CloseProjectAction'/><separator/><menuitem name='QuitAction' action='QuitAction'/></menu><menu name='ToolsAction' action='ToolsAction'><menuitem name='ProjectsManagerAction' action='ProjectsManagerAction'/><menuitem name='CategoriesTemplatesManagerAction' action='CategoriesTemplatesManagerAction'/><menuitem name='TeamsTemplatesManagerAction' action='TeamsTemplatesManagerAction'/><menuitem name='ExportProjectToCSVFileAction' action='ExportProjectToCSVFileAction'/></menu><menu name='ViewAction' action='ViewAction'><menuitem name='FullScreenAction' action='FullScreenAction'/><menuitem name='HideAllWidgetsAction' action='HideAllWidgetsActi
on'/><separator/><menuitem name='PlaylistAction' action='PlaylistAction'/><menuitem name='DrawingToolAction' action='DrawingToolAction'/><separator/><menuitem name='CaptureModeAction' action='CaptureModeAction'/><menuitem name='AnalyzeModeAction' action='AnalyzeModeAction'/></menu><menu name='HelpAction' action='HelpAction'><menuitem name='AboutAction' action='AboutAction'/><menuitem name='HelpAction1' action='HelpAction1'/></menu></menubar></ui>");
this.menubar1 = ((Gtk.MenuBar)(this.UIManager.GetWidget("/menubar1")));
this.menubar1.Name = "menubar1";
this.menubox.Add(this.menubar1);
@@ -378,7 +378,7 @@ namespace LongoMatch.Gui {
this.Child.ShowAll();
}
this.DefaultWidth = 1259;
- this.DefaultHeight = 537;
+ this.DefaultHeight = 590;
this.leftbox.Hide();
this.drawingtoolbox1.Hide();
this.timelinewidget1.Hide();
@@ -394,7 +394,7 @@ namespace LongoMatch.Gui {
this.QuitAction.Activated += new System.EventHandler(this.OnQuitActivated);
this.CloseProjectAction.Activated += new System.EventHandler(this.OnCloseActivated);
this.ProjectsManagerAction.Activated += new System.EventHandler(this.OnDatabaseManagerActivated);
- this.SectionsTemplatesManagerAction.Activated += new System.EventHandler(this.OnSectionsTemplatesManagerActivated);
+ this.CategoriesTemplatesManagerAction.Activated += new System.EventHandler(this.OnSectionsTemplatesManagerActivated);
this.FullScreenAction.Toggled += new System.EventHandler(this.OnFullScreenActionToggled);
this.PlaylistAction.Toggled += new System.EventHandler(this.OnPlaylistActionToggled);
this.CaptureModeAction.Toggled += new System.EventHandler(this.OnCaptureModeActionToggled);
diff --git a/LongoMatch/gtk-gui/gui.stetic b/LongoMatch/gtk-gui/gui.stetic
index fc360c2..66eb3df 100644
--- a/LongoMatch/gtk-gui/gui.stetic
+++ b/LongoMatch/gtk-gui/gui.stetic
@@ -5,6 +5,7 @@
<target-gtk-version>2.12</target-gtk-version>
</configuration>
<import>
+ <widget-library name="../../CesarPlayer/bin/Release/CesarPlayer.dll" />
<widget-library name="../bin/Release/LongoMatch.exe" internal="true" />
</import>
<icon-factory>
@@ -124,6 +125,7 @@
<property name="label">gtk-edit</property>
</widget>
<packing>
+ <property name="PackType">End</property>
<property name="Position">1</property>
<property name="AutoSize">True</property>
<property name="Expand">False</property>
@@ -174,6 +176,7 @@
<property name="label">gtk-edit</property>
</widget>
<packing>
+ <property name="PackType">End</property>
<property name="Position">1</property>
<property name="AutoSize">True</property>
<property name="Expand">False</property>
@@ -225,6 +228,7 @@
<property name="label">gtk-edit</property>
</widget>
<packing>
+ <property name="PackType">End</property>
<property name="Position">1</property>
<property name="AutoSize">True</property>
<property name="Expand">False</property>
@@ -1418,7 +1422,7 @@
</widget>
</child>
</widget>
- <widget class="Gtk.Window" id="LongoMatch.Gui.MainWindow" design-size="1259 537">
+ <widget class="Gtk.Window" id="LongoMatch.Gui.MainWindow" design-size="1259 590">
<action-group name="Default">
<action id="FileAction">
<property name="Type">Action</property>
@@ -1465,9 +1469,9 @@
<property name="ShortLabel" translatable="yes">Database Manager</property>
<signal name="Activated" handler="OnDatabaseManagerActivated" />
</action>
- <action id="SectionsTemplatesManagerAction">
+ <action id="CategoriesTemplatesManagerAction">
<property name="Type">Action</property>
- <property name="Label" translatable="yes">Sections Templates Manager</property>
+ <property name="Label" translatable="yes">Categories Templates Manager</property>
<property name="ShortLabel" translatable="yes">Templates Manager</property>
<signal name="Activated" handler="OnSectionsTemplatesManagerActivated" />
</action>
@@ -1602,7 +1606,7 @@
</node>
<node type="Menu" action="ToolsAction">
<node type="Menuitem" action="ProjectsManagerAction" />
- <node type="Menuitem" action="SectionsTemplatesManagerAction" />
+ <node type="Menuitem" action="CategoriesTemplatesManagerAction" />
<node type="Menuitem" action="TeamsTemplatesManagerAction" />
<node type="Menuitem" action="ExportProjectToCSVFileAction" />
</node>
@@ -2023,7 +2027,7 @@
</widget>
<widget class="Gtk.Dialog" id="LongoMatch.Gui.Dialog.ProjectTemplateEditorDialog" design-size="470 243">
<property name="MemberName" />
- <property name="Title" translatable="yes">Template Editor</property>
+ <property name="Title" translatable="yes">Project Template</property>
<property name="Icon">stock:longomatch Dialog</property>
<property name="WindowPosition">CenterOnParent</property>
<property name="Modal">True</property>
@@ -3471,60 +3475,6 @@ You can download it using this direct link:</property>
</widget>
</child>
</widget>
- <widget class="Gtk.Dialog" id="LongoMatch.Gui.Dialog.TeamTemplateEditor" design-size="436 313">
- <property name="MemberName" />
- <property name="Icon">resource:longomatch.png</property>
- <property name="WindowPosition">CenterOnParent</property>
- <property name="Modal">True</property>
- <property name="Gravity">Center</property>
- <property name="SkipPagerHint">True</property>
- <property name="SkipTaskbarHint">True</property>
- <property name="Buttons">1</property>
- <property name="HelpButton">False</property>
- <property name="HasSeparator">False</property>
- <child internal-child="VBox">
- <widget class="Gtk.VBox" id="dialog1_VBox">
- <property name="MemberName" />
- <property name="BorderWidth">2</property>
- <child>
- <widget class="LongoMatch.Gui.Component.TeamTemplateWidget" id="teamtemplatewidget1">
- <property name="MemberName" />
- <property name="Events">ButtonPressMask</property>
- <property name="Edited">False</property>
- </widget>
- <packing>
- <property name="Position">0</property>
- <property name="AutoSize">True</property>
- </packing>
- </child>
- </widget>
- </child>
- <child internal-child="ActionArea">
- <widget class="Gtk.HButtonBox" id="dialog1_ActionArea">
- <property name="MemberName" />
- <property name="Spacing">6</property>
- <property name="BorderWidth">5</property>
- <property name="Size">1</property>
- <property name="LayoutStyle">End</property>
- <child>
- <widget class="Gtk.Button" id="buttonOk">
- <property name="MemberName" />
- <property name="CanDefault">True</property>
- <property name="CanFocus">True</property>
- <property name="UseStock">True</property>
- <property name="Type">StockItem</property>
- <property name="StockId">gtk-apply</property>
- <property name="ResponseId">-10</property>
- <property name="label">gtk-apply</property>
- </widget>
- <packing>
- <property name="Expand">False</property>
- <property name="Fill">False</property>
- </packing>
- </child>
- </widget>
- </child>
- </widget>
<widget class="Gtk.Dialog" id="LongoMatch.Gui.Dialog.TemplatesManager" design-size="483 336">
<property name="MemberName" />
<property name="Title" translatable="yes">Templates Manager</property>
@@ -4426,4 +4376,58 @@ Show-><b> S</b>
</widget>
</child>
</widget>
+ <widget class="Gtk.Dialog" id="LongoMatch.Gui.Dialog.TeamTemplateEditor" design-size="436 313">
+ <property name="MemberName" />
+ <property name="Icon">resource:longomatch.png</property>
+ <property name="WindowPosition">CenterOnParent</property>
+ <property name="Modal">True</property>
+ <property name="Gravity">Center</property>
+ <property name="SkipPagerHint">True</property>
+ <property name="SkipTaskbarHint">True</property>
+ <property name="Buttons">1</property>
+ <property name="HelpButton">False</property>
+ <property name="HasSeparator">False</property>
+ <child internal-child="VBox">
+ <widget class="Gtk.VBox" id="dialog1_VBox">
+ <property name="MemberName" />
+ <property name="BorderWidth">2</property>
+ <child>
+ <widget class="LongoMatch.Gui.Component.TeamTemplateWidget" id="teamtemplatewidget1">
+ <property name="MemberName" />
+ <property name="Events">ButtonPressMask</property>
+ <property name="Edited">False</property>
+ </widget>
+ <packing>
+ <property name="Position">0</property>
+ <property name="AutoSize">True</property>
+ </packing>
+ </child>
+ </widget>
+ </child>
+ <child internal-child="ActionArea">
+ <widget class="Gtk.HButtonBox" id="dialog1_ActionArea">
+ <property name="MemberName" />
+ <property name="Spacing">6</property>
+ <property name="BorderWidth">5</property>
+ <property name="Size">1</property>
+ <property name="LayoutStyle">End</property>
+ <child>
+ <widget class="Gtk.Button" id="buttonOk">
+ <property name="MemberName" />
+ <property name="CanDefault">True</property>
+ <property name="CanFocus">True</property>
+ <property name="UseStock">True</property>
+ <property name="Type">StockItem</property>
+ <property name="StockId">gtk-apply</property>
+ <property name="ResponseId">-10</property>
+ <property name="label">gtk-apply</property>
+ </widget>
+ <packing>
+ <property name="Expand">False</property>
+ <property name="Fill">False</property>
+ </packing>
+ </child>
+ </widget>
+ </child>
+ </widget>
</stetic-interface>
\ No newline at end of file
diff --git a/LongoMatch/gtk-gui/objects.xml b/LongoMatch/gtk-gui/objects.xml
index aeade79..7d1055e 100644
--- a/LongoMatch/gtk-gui/objects.xml
+++ b/LongoMatch/gtk-gui/objects.xml
@@ -121,14 +121,6 @@
</itemgroup>
</signals>
</object>
- <object type="LongoMatch.Gui.Component.ProjectTemplateWidget" palette-category="LongoMatch" allow-children="false" base-type="Gtk.Bin">
- <itemgroups>
- <itemgroup label="ProjectTemplateWidget Properties">
- <property name="Edited" />
- </itemgroup>
- </itemgroups>
- <signals />
- </object>
<object type="LongoMatch.Gui.Component.CategoriesTreeView" palette-category="LongoMatch" allow-children="false" base-type="Gtk.TreeView">
<itemgroups />
<signals>
@@ -216,6 +208,14 @@
</itemgroup>
</signals>
</object>
+ <object type="LongoMatch.Gui.Component.ProjectTemplateWidget" palette-category="LongoMatch" allow-children="false" base-type="Gtk.Bin">
+ <itemgroups>
+ <itemgroup label="ProjectTemplateWidget Properties">
+ <property name="Edited" />
+ </itemgroup>
+ </itemgroups>
+ <signals />
+ </object>
<object type="LongoMatch.Gui.Component.ProjectDetailsWidget" palette-category="LongoMatch" allow-children="false" base-type="Gtk.Bin">
<itemgroups>
<itemgroup label="ProjectDetailsWidget Properties">
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]