glcompbutton.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*************************************************************************
  2. * Copyright (c) 2011 AT&T Intellectual Property
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * https://www.eclipse.org/legal/epl-v10.html
  7. *
  8. * Contributors: Details at https://graphviz.org
  9. *************************************************************************/
  10. #pragma once
  11. #include <glcomp/glcompdefs.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. glCompButton *glCompButtonNew(void *par, float x, float y, float w, float h,
  16. char *caption);
  17. extern void glCompButtonDraw(glCompButton * p);
  18. int glCompButtonAddPngGlyph(glCompButton *b, const char *fileName);
  19. void glCompButtonClick(glCompObj *o, float x, float y, glMouseButtonType t);
  20. void glCompButtonDoubleClick(glCompObj *o, float x, float y,
  21. glMouseButtonType t);
  22. void glCompButtonMouseDown(glCompObj *o, float x, float y,
  23. glMouseButtonType t);
  24. void glCompButtonMouseIn(glCompObj *o, float x, float y);
  25. void glCompButtonMouseOut(glCompObj *o, float x, float y);
  26. void glCompButtonMouseOver(glCompObj *o, float x, float y);
  27. void glCompButtonMouseUp(glCompObj *o, float x, float y, glMouseButtonType t);
  28. extern void glCompButtonHide(glCompButton * p);
  29. extern void glCompButtonShow(glCompButton * p);
  30. #ifdef __cplusplus
  31. }
  32. #endif