mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
97 lines
3.9 KiB
C++
97 lines
3.9 KiB
C++
#ifndef GEN_QTOOLBAR_H
|
|
#define GEN_QTOOLBAR_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include "binding.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QAction;
|
|
class QIcon;
|
|
class QMetaObject;
|
|
class QPoint;
|
|
class QRect;
|
|
class QSize;
|
|
class QToolBar;
|
|
class QWidget;
|
|
#else
|
|
typedef struct QAction QAction;
|
|
typedef struct QIcon QIcon;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QPoint QPoint;
|
|
typedef struct QRect QRect;
|
|
typedef struct QSize QSize;
|
|
typedef struct QToolBar QToolBar;
|
|
typedef struct QWidget QWidget;
|
|
#endif
|
|
|
|
QToolBar* QToolBar_new(struct miqt_string* title);
|
|
QToolBar* QToolBar_new2();
|
|
QToolBar* QToolBar_new3(struct miqt_string* title, QWidget* parent);
|
|
QToolBar* QToolBar_new4(QWidget* parent);
|
|
QMetaObject* QToolBar_MetaObject(const QToolBar* self);
|
|
void* QToolBar_Metacast(QToolBar* self, const char* param1);
|
|
struct miqt_string* QToolBar_Tr(const char* s);
|
|
struct miqt_string* QToolBar_TrUtf8(const char* s);
|
|
void QToolBar_SetMovable(QToolBar* self, bool movable);
|
|
bool QToolBar_IsMovable(const QToolBar* self);
|
|
void QToolBar_SetAllowedAreas(QToolBar* self, int areas);
|
|
int QToolBar_AllowedAreas(const QToolBar* self);
|
|
bool QToolBar_IsAreaAllowed(const QToolBar* self, int area);
|
|
void QToolBar_SetOrientation(QToolBar* self, int orientation);
|
|
int QToolBar_Orientation(const QToolBar* self);
|
|
void QToolBar_Clear(QToolBar* self);
|
|
QAction* QToolBar_AddAction(QToolBar* self, struct miqt_string* text);
|
|
QAction* QToolBar_AddAction2(QToolBar* self, QIcon* icon, struct miqt_string* text);
|
|
QAction* QToolBar_AddSeparator(QToolBar* self);
|
|
QAction* QToolBar_InsertSeparator(QToolBar* self, QAction* before);
|
|
QAction* QToolBar_AddWidget(QToolBar* self, QWidget* widget);
|
|
QAction* QToolBar_InsertWidget(QToolBar* self, QAction* before, QWidget* widget);
|
|
QRect* QToolBar_ActionGeometry(const QToolBar* self, QAction* action);
|
|
QAction* QToolBar_ActionAt(const QToolBar* self, QPoint* p);
|
|
QAction* QToolBar_ActionAt2(const QToolBar* self, int x, int y);
|
|
QAction* QToolBar_ToggleViewAction(const QToolBar* self);
|
|
QSize* QToolBar_IconSize(const QToolBar* self);
|
|
int QToolBar_ToolButtonStyle(const QToolBar* self);
|
|
QWidget* QToolBar_WidgetForAction(const QToolBar* self, QAction* action);
|
|
bool QToolBar_IsFloatable(const QToolBar* self);
|
|
void QToolBar_SetFloatable(QToolBar* self, bool floatable);
|
|
bool QToolBar_IsFloating(const QToolBar* self);
|
|
void QToolBar_SetIconSize(QToolBar* self, QSize* iconSize);
|
|
void QToolBar_SetToolButtonStyle(QToolBar* self, int toolButtonStyle);
|
|
void QToolBar_ActionTriggered(QToolBar* self, QAction* action);
|
|
void QToolBar_connect_ActionTriggered(QToolBar* self, void* slot);
|
|
void QToolBar_MovableChanged(QToolBar* self, bool movable);
|
|
void QToolBar_connect_MovableChanged(QToolBar* self, void* slot);
|
|
void QToolBar_AllowedAreasChanged(QToolBar* self, int allowedAreas);
|
|
void QToolBar_connect_AllowedAreasChanged(QToolBar* self, void* slot);
|
|
void QToolBar_OrientationChanged(QToolBar* self, int orientation);
|
|
void QToolBar_connect_OrientationChanged(QToolBar* self, void* slot);
|
|
void QToolBar_IconSizeChanged(QToolBar* self, QSize* iconSize);
|
|
void QToolBar_connect_IconSizeChanged(QToolBar* self, void* slot);
|
|
void QToolBar_ToolButtonStyleChanged(QToolBar* self, int toolButtonStyle);
|
|
void QToolBar_connect_ToolButtonStyleChanged(QToolBar* self, void* slot);
|
|
void QToolBar_TopLevelChanged(QToolBar* self, bool topLevel);
|
|
void QToolBar_connect_TopLevelChanged(QToolBar* self, void* slot);
|
|
void QToolBar_VisibilityChanged(QToolBar* self, bool visible);
|
|
void QToolBar_connect_VisibilityChanged(QToolBar* self, void* slot);
|
|
struct miqt_string* QToolBar_Tr2(const char* s, const char* c);
|
|
struct miqt_string* QToolBar_Tr3(const char* s, const char* c, int n);
|
|
struct miqt_string* QToolBar_TrUtf82(const char* s, const char* c);
|
|
struct miqt_string* QToolBar_TrUtf83(const char* s, const char* c, int n);
|
|
void QToolBar_Delete(QToolBar* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|