Changeset 3380
- Timestamp:
- 02/07/08 21:23:09
- Files:
-
- trunk/bindings/dotnet/platform/libtinymail-platform.metadata.in (moved) (moved from trunk/bindings/dotnet/platform/libtinymail-platform.metadata) (1 diff)
- trunk/configure.ac (modified) (8 diffs)
- trunk/tests/dotnet-demo/MainWindow.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/bindings/dotnet/platform/libtinymail-platform.metadata.in
r3377 r3380 2 2 <metadata> 3 3 <attr path="/api/namespace[@name='Tny']" name="name">Tny.Platform</attr> 4 <attr path="/api/namespace/object[@cname='Tny@PLATFORMSPECIFICNAME@AccountStore']" name="name">AccountStore</attr> 5 <attr path="/api/namespace/object[@cname='Tny@PLATFORMSPECIFICNAME@Device']" name="name">Device</attr> 6 <attr path="/api/namespace/object[@cname='Tny@PLATFORMSPECIFICNAME@PlatformFactory']" name="name">PlatformFactory</attr> 4 7 </metadata> trunk/configure.ac
r3373 r3380 71 71 have_conic=false 72 72 PLATFORMDIR=libtinymail-gnome-desktop 73 PLATFORMSPECIFICNAME=Gnome 73 74 PLATFORM=1 74 75 … … 79 80 [case "${with_platform}" in 80 81 gnome-desktop) 81 PLATFORMDIR=libtinymail-gnome-desktop 82 PLATFORMDIR=libtinymail-gnome-desktop 83 PLATFORMSPECIFICNAME=Gnome 82 84 build_uigtk=true 83 85 build_demoui=true … … 86 88 maemo) 87 89 PLATFORMDIR=libtinymail-maemo 90 PLATFORMSPECIFICNAME=Maemo 88 91 build_gtkhtml=false 89 92 build_mozembed=false … … 95 98 ;; 96 99 gpe) 97 PLATFORMDIR=libtinymail-gpe 100 PLATFORMDIR=libtinymail-gpe 101 PLATFORMSPECIFICNAME=Gpe 98 102 build_uigtk=true 99 103 build_demoui=true … … 102 106 olpc) 103 107 PLATFORMDIR=libtinymail-olpc 108 PLATFORMSPECIFICNAME=Olpc 104 109 build_gtkhtml=false 105 110 build_mozembed=false … … 112 117 *) 113 118 PLATFORMDIR=${with_platform} 119 PLATFORMSPECIFICNAME= 114 120 build_uigtk=false 115 121 build_demoui=false … … 120 126 AC_SUBST(PLATFORMDIR) 121 127 AC_SUBST(PLATFORM) 128 AC_SUBST(PLATFORMSPECIFICNAME) 122 129 123 130 dnl ### Select the html component ## … … 540 547 bindings/dotnet/platform/libtinymail-platform-sharp.pc 541 548 bindings/dotnet/platform/libtinymail-platform-sources.xml 549 bindings/dotnet/platform/libtinymail-platform.metadata 542 550 bindings/dotnet/platform/Makefile 543 551 libtinymail/Makefile trunk/tests/dotnet-demo/MainWindow.cs
r3377 r3380 113 113 private void OnConnectButtonClicked (object sender, System.EventArgs e) 114 114 { 115 // Tny.Ui.PlatformFactory factory = Tny.Platform. GnomePlatformFactory.Instance;115 // Tny.Ui.PlatformFactory factory = Tny.Platform.PlatformFactory.Instance; 116 116 // this.store = factory.NewAccountStore (); 117 117 118 this.store = new Tny.Platform. GnomeAccountStore ();118 this.store = new Tny.Platform.AccountStore (); 119 119 Tny.Ui.GTK.FolderStoreTreeModel model = new Tny.Ui.GTK.FolderStoreTreeModel (new Tny.FolderStoreQuery ()); 120 120 store.GetAccounts (model, Tny.GetAccountsRequestType.StoreAccounts);
