Tools and libraries to glue C/C++ APIs to high-level languages
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

35 lines
1.2 KiB

using System;
using Mono.VisualC.Interop;
namespace Qt.Gui {
public class QAbstractButton : QWidget {
#region Sync with qabstractbutton.h
// C++ interface
public interface IQAbstractButton : ICppClassOverridable<QAbstractButton> {
[Virtual] void paintEvent (CppInstancePtr @this, /*QPaintEvent */ IntPtr e); // abstract
[Virtual] bool hitButton (CppInstancePtr @this, /*const QPoint &*/ IntPtr pos);
[Virtual] void checkStateSet (CppInstancePtr @this);
[Virtual] void nextCheckState (CppInstancePtr @this);
}
private struct _QAbstractButton {
}
#endregion
private static IQAbstractButton impl = Qt.Libs.QtGui.GetClass<IQAbstractButton, _QAbstractButton, QAbstractButton> ("QAbstractButton");
public QAbstractButton (IntPtr native) : base (impl.TypeInfo)
{
Native = native;
}
internal QAbstractButton (CppTypeInfo subClass) : base (impl.TypeInfo)
{
subClass.AddBase (impl.TypeInfo);
}
public override void Dispose ()
{
}
}
}