2002-07-11 13:18:36 +00:00
|
|
|
// Gtk.ColorSelectionDialog.custom - Gtk ColorSelectionDialog class customizations
|
|
|
|
//
|
|
|
|
// Author: Duncan Mak (duncan@ximian.com)
|
|
|
|
//
|
|
|
|
// Copyright (C) 2002 Ximian, Inc.
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// modify it under the terms of version 2 of the Lesser GNU General
|
|
|
|
// 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.
|
|
|
|
|
2002-07-11 13:18:36 +00:00
|
|
|
|
2004-12-18 20:59:57 +00:00
|
|
|
[Obsolete ("Do not use this class. It will cause your app to crash in mysterious ways.")]
|
2003-03-16 00:08:18 +00:00
|
|
|
public class ColorSelectionButton : Gtk.Button {
|
2002-08-13 14:01:14 +00:00
|
|
|
private ColorSelectionDialog color_sel;
|
|
|
|
|
|
|
|
public ColorSelectionDialog ColorSelectionDialog {
|
|
|
|
get { return color_sel; }
|
|
|
|
}
|
|
|
|
|
2003-03-16 00:08:18 +00:00
|
|
|
public ColorSelectionButton (ColorSelectionDialog cs, IntPtr raw) : base (raw) {
|
2002-08-13 14:01:14 +00:00
|
|
|
color_sel = cs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|