12345678910111213141516171819202122232425262728293031323334353637 |
- /*************************************************************************
- * Copyright (c) 2011 AT&T Intellectual Property
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors: Details at https://graphviz.org
- *************************************************************************/
- #pragma once
- #include <glcomp/glcompdefs.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- glCompButton *glCompButtonNew(void *par, float x, float y, float w, float h,
- char *caption);
- extern void glCompButtonDraw(glCompButton * p);
- int glCompButtonAddPngGlyph(glCompButton *b, const char *fileName);
- void glCompButtonClick(glCompObj *o, float x, float y, glMouseButtonType t);
- void glCompButtonDoubleClick(glCompObj *o, float x, float y,
- glMouseButtonType t);
- void glCompButtonMouseDown(glCompObj *o, float x, float y,
- glMouseButtonType t);
- void glCompButtonMouseIn(glCompObj *o, float x, float y);
- void glCompButtonMouseOut(glCompObj *o, float x, float y);
- void glCompButtonMouseOver(glCompObj *o, float x, float y);
- void glCompButtonMouseUp(glCompObj *o, float x, float y, glMouseButtonType t);
- extern void glCompButtonHide(glCompButton * p);
- extern void glCompButtonShow(glCompButton * p);
- #ifdef __cplusplus
- }
- #endif
|