initial import: a gtk app
This commit is contained in:
parent
ccf5216c4b
commit
daf8887ea4
11 changed files with 420 additions and 0 deletions
17
yagui/yagui.sln
Normal file
17
yagui/yagui.sln
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2012
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "yagui", "yagui\yagui.csproj", "{1410E8A4-761D-40D1-95FA-E2489AF56F24}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|x86 = Debug|x86
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{1410E8A4-761D-40D1-95FA-E2489AF56F24}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{1410E8A4-761D-40D1-95FA-E2489AF56F24}.Debug|x86.Build.0 = Debug|x86
|
||||
{1410E8A4-761D-40D1-95FA-E2489AF56F24}.Release|x86.ActiveCfg = Release|x86
|
||||
{1410E8A4-761D-40D1-95FA-E2489AF56F24}.Release|x86.Build.0 = Release|x86
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
14
yagui/yagui/Main.cs
Normal file
14
yagui/yagui/Main.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
|
||||
namespace yagui
|
||||
{
|
||||
public partial class Main : Gtk.Window
|
||||
{
|
||||
public Main () :
|
||||
base (Gtk.WindowType.Toplevel)
|
||||
{
|
||||
this.Build ();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
16
yagui/yagui/MainWindow.cs
Normal file
16
yagui/yagui/MainWindow.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using Gtk;
|
||||
|
||||
public partial class MainWindow: Gtk.Window
|
||||
{
|
||||
public MainWindow () : base (Gtk.WindowType.Toplevel)
|
||||
{
|
||||
Build ();
|
||||
}
|
||||
|
||||
protected void OnDeleteEvent (object sender, DeleteEventArgs a)
|
||||
{
|
||||
Application.Quit ();
|
||||
a.RetVal = true;
|
||||
}
|
||||
}
|
||||
16
yagui/yagui/Program.cs
Normal file
16
yagui/yagui/Program.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using Gtk;
|
||||
|
||||
namespace yagui
|
||||
{
|
||||
class MainClass
|
||||
{
|
||||
public static void Main (string[] args)
|
||||
{
|
||||
Application.Init ();
|
||||
MainWindow win = new MainWindow ();
|
||||
win.Show ();
|
||||
Application.Run ();
|
||||
}
|
||||
}
|
||||
}
|
||||
27
yagui/yagui/Properties/AssemblyInfo.cs
Normal file
27
yagui/yagui/Properties/AssemblyInfo.cs
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
// Information about this assembly is defined by the following attributes.
|
||||
// Change them to the values specific to your project.
|
||||
|
||||
[assembly: AssemblyTitle ("yagui")]
|
||||
[assembly: AssemblyDescription ("")]
|
||||
[assembly: AssemblyConfiguration ("")]
|
||||
[assembly: AssemblyCompany ("")]
|
||||
[assembly: AssemblyProduct ("")]
|
||||
[assembly: AssemblyCopyright ("Paul Schneider")]
|
||||
[assembly: AssemblyTrademark ("")]
|
||||
[assembly: AssemblyCulture ("")]
|
||||
|
||||
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
|
||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||
|
||||
[assembly: AssemblyVersion ("1.0.*")]
|
||||
|
||||
// The following attributes are used to specify the signing key for the assembly,
|
||||
// if desired. See the Mono documentation for more information about signing.
|
||||
|
||||
//[assembly: AssemblyDelaySign(false)]
|
||||
//[assembly: AssemblyKeyFile("")]
|
||||
|
||||
3
yagui/yagui/README.md
Normal file
3
yagui/yagui/README.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# a Yavsc desktop gui #
|
||||
|
||||
Will certainly become my prefered desktop app against Yavsc resources.
|
||||
21
yagui/yagui/gtk-gui/MainWindow.cs
Normal file
21
yagui/yagui/gtk-gui/MainWindow.cs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
|
||||
// This file has been generated by the GUI designer. Do not modify.
|
||||
|
||||
public partial class MainWindow
|
||||
{
|
||||
protected virtual void Build ()
|
||||
{
|
||||
global::Stetic.Gui.Initialize (this);
|
||||
// Widget MainWindow
|
||||
this.Name = "MainWindow";
|
||||
this.Title = global::Mono.Unix.Catalog.GetString ("MainWindow");
|
||||
this.WindowPosition = ((global::Gtk.WindowPosition)(4));
|
||||
if ((this.Child != null)) {
|
||||
this.Child.ShowAll ();
|
||||
}
|
||||
this.DefaultWidth = 400;
|
||||
this.DefaultHeight = 300;
|
||||
this.Show ();
|
||||
this.DeleteEvent += new global::Gtk.DeleteEventHandler (this.OnDeleteEvent);
|
||||
}
|
||||
}
|
||||
30
yagui/yagui/gtk-gui/generated.cs
Normal file
30
yagui/yagui/gtk-gui/generated.cs
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
// This file has been generated by the GUI designer. Do not modify.
|
||||
namespace Stetic
|
||||
{
|
||||
internal class Gui
|
||||
{
|
||||
private static bool initialized;
|
||||
|
||||
internal static void Initialize(Gtk.Widget iconRenderer)
|
||||
{
|
||||
if ((Stetic.Gui.initialized == false))
|
||||
{
|
||||
Stetic.Gui.initialized = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal class ActionGroups
|
||||
{
|
||||
public static Gtk.ActionGroup GetActionGroup(System.Type type)
|
||||
{
|
||||
return Stetic.ActionGroups.GetActionGroup(type.FullName);
|
||||
}
|
||||
|
||||
public static Gtk.ActionGroup GetActionGroup(string name)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
101
yagui/yagui/gtk-gui/gui.stetic
Normal file
101
yagui/yagui/gtk-gui/gui.stetic
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<stetic-interface>
|
||||
<configuration>
|
||||
<images-root-path>..</images-root-path>
|
||||
</configuration>
|
||||
<import>
|
||||
<widget-library name="glade-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
|
||||
<widget-library name="../bin/Debug/yagui.exe" internal="true" />
|
||||
</import>
|
||||
<widget class="Gtk.Window" id="MainWindow" design-size="400 300">
|
||||
<property name="MemberName" />
|
||||
<property name="Title" translatable="yes">MainWindow</property>
|
||||
<property name="WindowPosition">CenterOnParent</property>
|
||||
<signal name="DeleteEvent" handler="OnDeleteEvent" />
|
||||
<child>
|
||||
<placeholder />
|
||||
</child>
|
||||
</widget>
|
||||
<widget class="Gtk.Window" id="yagui.Main" design-size="409 300">
|
||||
<action-group name="Default">
|
||||
<action id="FileAction">
|
||||
<property name="Type">Action</property>
|
||||
<property name="Label" translatable="yes">File</property>
|
||||
<property name="ShortLabel" translatable="yes">File</property>
|
||||
</action>
|
||||
<action id="reloadAction1">
|
||||
<property name="Type">Action</property>
|
||||
<property name="Label" translatable="yes">reload</property>
|
||||
<property name="ShortLabel" translatable="yes">reload</property>
|
||||
</action>
|
||||
</action-group>
|
||||
<property name="MemberName" />
|
||||
<property name="Title" translatable="yes">Main</property>
|
||||
<property name="WindowPosition">CenterOnParent</property>
|
||||
<child>
|
||||
<widget class="Gtk.VBox" id="vbox3">
|
||||
<property name="MemberName" />
|
||||
<property name="Spacing">6</property>
|
||||
<child>
|
||||
<widget class="Gtk.ComboBoxEntry" id="comboboxentry1">
|
||||
<property name="MemberName" />
|
||||
<property name="IsTextCombo">True</property>
|
||||
<property name="Items" translatable="yes" />
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="Position">0</property>
|
||||
<property name="AutoSize">True</property>
|
||||
<property name="Expand">False</property>
|
||||
<property name="Fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<widget class="Gtk.ScrolledWindow" id="GtkScrolledWindow">
|
||||
<property name="MemberName" />
|
||||
<property name="ShadowType">In</property>
|
||||
<child>
|
||||
<widget class="Gtk.TextView" id="textview2">
|
||||
<property name="MemberName" />
|
||||
<property name="CanFocus">True</property>
|
||||
<property name="ShowScrollbars">True</property>
|
||||
<property name="Text" translatable="yes" />
|
||||
</widget>
|
||||
</child>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="Position">1</property>
|
||||
<property name="AutoSize">True</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<widget class="Gtk.Statusbar" id="statusbar2">
|
||||
<property name="MemberName" />
|
||||
<property name="Spacing">6</property>
|
||||
<child>
|
||||
<widget class="Gtk.MenuBar" id="menubar2">
|
||||
<property name="MemberName" />
|
||||
<node name="menubar2" type="Menubar">
|
||||
<node type="Menu" action="FileAction">
|
||||
<node type="Menuitem" action="reloadAction1" />
|
||||
</node>
|
||||
</node>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="Position">1</property>
|
||||
<property name="AutoSize">True</property>
|
||||
<property name="Expand">False</property>
|
||||
<property name="Fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="Position">2</property>
|
||||
<property name="AutoSize">True</property>
|
||||
<property name="Expand">False</property>
|
||||
<property name="Fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
</widget>
|
||||
</child>
|
||||
</widget>
|
||||
</stetic-interface>
|
||||
94
yagui/yagui/gtk-gui/yagui.Main.cs
Normal file
94
yagui/yagui/gtk-gui/yagui.Main.cs
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
|
||||
// This file has been generated by the GUI designer. Do not modify.
|
||||
namespace yagui
|
||||
{
|
||||
public partial class Main
|
||||
{
|
||||
private global::Gtk.UIManager UIManager;
|
||||
|
||||
private global::Gtk.Action FileAction;
|
||||
|
||||
private global::Gtk.Action reloadAction1;
|
||||
|
||||
private global::Gtk.VBox vbox3;
|
||||
|
||||
private global::Gtk.ComboBoxEntry comboboxentry1;
|
||||
|
||||
private global::Gtk.ScrolledWindow GtkScrolledWindow;
|
||||
|
||||
private global::Gtk.TextView textview2;
|
||||
|
||||
private global::Gtk.Statusbar statusbar2;
|
||||
|
||||
private global::Gtk.MenuBar menubar2;
|
||||
|
||||
protected virtual void Build()
|
||||
{
|
||||
global::Stetic.Gui.Initialize(this);
|
||||
// Widget yagui.Main
|
||||
this.UIManager = new global::Gtk.UIManager();
|
||||
global::Gtk.ActionGroup w1 = new global::Gtk.ActionGroup("Default");
|
||||
this.FileAction = new global::Gtk.Action("FileAction", global::Mono.Unix.Catalog.GetString("File"), null, null);
|
||||
this.FileAction.ShortLabel = global::Mono.Unix.Catalog.GetString("File");
|
||||
w1.Add(this.FileAction, null);
|
||||
this.reloadAction1 = new global::Gtk.Action("reloadAction1", global::Mono.Unix.Catalog.GetString("reload"), null, null);
|
||||
this.reloadAction1.ShortLabel = global::Mono.Unix.Catalog.GetString("reload");
|
||||
w1.Add(this.reloadAction1, null);
|
||||
this.UIManager.InsertActionGroup(w1, 0);
|
||||
this.AddAccelGroup(this.UIManager.AccelGroup);
|
||||
this.Name = "yagui.Main";
|
||||
this.Title = global::Mono.Unix.Catalog.GetString("Main");
|
||||
this.WindowPosition = ((global::Gtk.WindowPosition)(4));
|
||||
// Container child yagui.Main.Gtk.Container+ContainerChild
|
||||
this.vbox3 = new global::Gtk.VBox();
|
||||
this.vbox3.Name = "vbox3";
|
||||
this.vbox3.Spacing = 6;
|
||||
// Container child vbox3.Gtk.Box+BoxChild
|
||||
this.comboboxentry1 = global::Gtk.ComboBoxEntry.NewText();
|
||||
this.comboboxentry1.Name = "comboboxentry1";
|
||||
this.vbox3.Add(this.comboboxentry1);
|
||||
global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.comboboxentry1]));
|
||||
w2.Position = 0;
|
||||
w2.Expand = false;
|
||||
w2.Fill = false;
|
||||
// Container child vbox3.Gtk.Box+BoxChild
|
||||
this.GtkScrolledWindow = new global::Gtk.ScrolledWindow();
|
||||
this.GtkScrolledWindow.Name = "GtkScrolledWindow";
|
||||
this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
|
||||
// Container child GtkScrolledWindow.Gtk.Container+ContainerChild
|
||||
this.textview2 = new global::Gtk.TextView();
|
||||
this.textview2.CanFocus = true;
|
||||
this.textview2.Name = "textview2";
|
||||
this.GtkScrolledWindow.Add(this.textview2);
|
||||
this.vbox3.Add(this.GtkScrolledWindow);
|
||||
global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.GtkScrolledWindow]));
|
||||
w4.Position = 1;
|
||||
// Container child vbox3.Gtk.Box+BoxChild
|
||||
this.statusbar2 = new global::Gtk.Statusbar();
|
||||
this.statusbar2.Name = "statusbar2";
|
||||
this.statusbar2.Spacing = 6;
|
||||
// Container child statusbar2.Gtk.Box+BoxChild
|
||||
this.UIManager.AddUiFromString("<ui><menubar name='menubar2'><menu name='FileAction' action='FileAction'><menuitem name='reloadAction1' action='reloadAction1'/></menu></menubar></ui>");
|
||||
this.menubar2 = ((global::Gtk.MenuBar)(this.UIManager.GetWidget("/menubar2")));
|
||||
this.menubar2.Name = "menubar2";
|
||||
this.statusbar2.Add(this.menubar2);
|
||||
global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.statusbar2[this.menubar2]));
|
||||
w5.Position = 1;
|
||||
w5.Expand = false;
|
||||
w5.Fill = false;
|
||||
this.vbox3.Add(this.statusbar2);
|
||||
global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.statusbar2]));
|
||||
w6.Position = 2;
|
||||
w6.Expand = false;
|
||||
w6.Fill = false;
|
||||
this.Add(this.vbox3);
|
||||
if ((this.Child != null))
|
||||
{
|
||||
this.Child.ShowAll();
|
||||
}
|
||||
this.DefaultWidth = 409;
|
||||
this.DefaultHeight = 300;
|
||||
this.Show();
|
||||
}
|
||||
}
|
||||
}
|
||||
81
yagui/yagui/yagui.csproj
Normal file
81
yagui/yagui/yagui.csproj
Normal file
|
|
@ -0,0 +1,81 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||
<ProjectGuid>{1410E8A4-761D-40D1-95FA-E2489AF56F24}</ProjectGuid>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<RootNamespace>yagui</RootNamespace>
|
||||
<AssemblyName>yagui</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="gtk-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<Package>gtk-sharp-3.0</Package>
|
||||
</Reference>
|
||||
<Reference Include="gdk-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<Package>gtk-sharp-2.0</Package>
|
||||
</Reference>
|
||||
<Reference Include="glib-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<Package>glib-sharp-3.0</Package>
|
||||
</Reference>
|
||||
<Reference Include="glade-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<Package>glade-sharp-2.0</Package>
|
||||
</Reference>
|
||||
<Reference Include="pango-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<Package>gtk-sharp-3.0</Package>
|
||||
</Reference>
|
||||
<Reference Include="atk-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<Package>gtk-sharp-3.0</Package>
|
||||
</Reference>
|
||||
<Reference Include="Mono.Posix" />
|
||||
<Reference Include="gio-sharp, Version=3.0.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
|
||||
<Package>gio-sharp-3.0</Package>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="gtk-gui\gui.stetic">
|
||||
<LogicalName>gui.stetic</LogicalName>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="gtk-gui\generated.cs" />
|
||||
<Compile Include="MainWindow.cs" />
|
||||
<Compile Include="gtk-gui\MainWindow.cs" />
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Main.cs" />
|
||||
<Compile Include="gtk-gui\yagui.Main.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
<ItemGroup>
|
||||
<None Include="README.md" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Loading…
Add table
Add a link
Reference in a new issue