process.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these libraries and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. #pragma once
  24. /* process.c */
  25. void Process_New(void);
  26. void Process_Open(void);
  27. void Process_Save(void);
  28. void Process_SaveAs(void);
  29. void Process_Quit(void);
  30. void Process_Query_OK(void);
  31. void Process_Query_Cancel(void);
  32. void Process_Size_OK(void);
  33. void Eval_NewSize(int width, int height);
  34. void Process_Size_Cancel(void);
  35. void Process_StdErr_OK(void);
  36. void Process_Undo(void);
  37. void Process_Cut(void);
  38. void Process_Copy(XImage **img, XImage **img_mono);
  39. void Process_Paste(void);
  40. void Process_Scale(void);
  41. void Process_Resize(void);
  42. void Process_Clear(void);
  43. void Process_GrabImage(void);
  44. void Process_AddHotspot(void);
  45. void Process_DeleteHotspot(void);
  46. void Process_RotateLeft(void);
  47. void Process_RotateRight(void);
  48. void Process_FlipV(void);
  49. void Process_FlipH(void);
  50. void Process_GridState(void);
  51. void Process_DropCheckOp(Widget w, XtPointer client_data, XtPointer call_data);
  52. void Process_DropOp(Widget w, XtPointer client_data, XtPointer call_data);
  53. void Do_Paste(int x, int y);