2004-10-29 20:33:07 +00:00
|
|
|
// Gtk.UiManager.custom - Gtk UiManager class customizations
|
2002-07-19 07:54:33 +00:00
|
|
|
//
|
2004-10-29 20:33:07 +00:00
|
|
|
// Author: John Luke <john.luke@gmail.com>
|
2002-07-19 07:54:33 +00:00
|
|
|
//
|
2004-10-29 20:33:07 +00:00
|
|
|
// Copyright (C) 2004 Novell, Inc.
|
2002-07-19 07:54:33 +00:00
|
|
|
//
|
|
|
|
// This code is inserted after the automatically generated code.
|
|
|
|
//
|
2004-06-25 18:42:19 +00:00
|
|
|
// This program is free software; you can redistribute it and/or
|
2004-10-29 20:33:07 +00:00
|
|
|
// modify it under the terms of version 2 of the Lesser GNU General
|
2004-06-25 18:42:19 +00:00
|
|
|
// Public License as published by the Free Software Foundation.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this program; if not, write to the
|
|
|
|
// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
// Boston, MA 02111-1307, USA.
|
|
|
|
|
2004-10-29 20:33:07 +00:00
|
|
|
public uint AddUiFromResource (string resource)
|
|
|
|
{
|
|
|
|
if (resource == null)
|
|
|
|
throw new ArgumentNullException ("resource");
|
|
|
|
|
|
|
|
System.IO.Stream s = System.Reflection.Assembly.GetCallingAssembly ().GetManifestResourceStream (resource);
|
|
|
|
if (s == null)
|
|
|
|
throw new ArgumentException ("resource must be a valid resource name of 'assembly'.");
|
2002-07-19 07:54:33 +00:00
|
|
|
|
2004-10-29 20:33:07 +00:00
|
|
|
return AddUiFromString (new System.IO.StreamReader (s).ReadToEnd ());
|
|
|
|
}
|
2002-07-19 07:54:33 +00:00
|
|
|
|