• 使用easyx制作一个绘画程序


    1. #include
    2. #include
    3. #include
    4. #include//包含windows.h
    5. #include//使用_getch()
    6. #pragma comment(lib,"winmm.lib")
    7. using namespace std;
    8. void change()
    9. {
    10. //获取窗口句柄
    11. HWND hnd = GetHWnd();
    12. //设置窗口标题
    13. SetWindowText(hnd, "small pink pig");
    14. }
    15. int main()
    16. {
    17. initgraph(800, 600, EX_SHOWCONSOLE);
    18. setbkcolor(WHITE);//设置背景颜色
    19. cleardevice();//用设置的背景颜色填充
    20. setbkmode(TRANSPARENT);
    21. change();//窗口文字
    22. // 设置默认颜色和笔刷大小
    23. COLORREF currentColor = RED;
    24. static int size = 5;
    25. int flag = 0;
    26. int freams = 4;
    27. int ys = (flag + freams) % freams;
    28. while (true)
    29. {
    30. // 处理鼠标事件
    31. if (MouseHit())
    32. {
    33. MOUSEMSG msg = GetMouseMsg();
    34. // 绘制印记
    35. BeginBatchDraw();
    36. if (msg.mkLButton)
    37. {
    38. setfillcolor(currentColor);
    39. solidcircle(msg.x, msg.y, size);
    40. FlushBatchDraw();
    41. printf("%d, %d\n", msg.x, msg.y);
    42. }
    43. EndBatchDraw();
    44. }
    45. // 处理键盘事件
    46. if (_kbhit())
    47. {
    48. int key = _getch();
    49. if (key == 'A')
    50. {
    51. flag--;
    52. printf("A\n");
    53. }
    54. else if (key == 'D')
    55. {
    56. flag++;
    57. printf("D\n");
    58. }
    59. else if (key == 'Q')
    60. {
    61. size = max(1, size - 5);
    62. printf("Q\n");
    63. }
    64. else if (key == 'E')
    65. {
    66. size = min(25, size + 5);
    67. printf("E\n");
    68. }
    69. }
    70. if (flag < 0) flag = 3;
    71. ys = (flag + freams) % freams;
    72. switch (ys)
    73. {
    74. case 0:
    75. currentColor = RED;
    76. break;
    77. case 1:
    78. currentColor = RGB(255, 174, 201);
    79. break;
    80. case 2:
    81. currentColor = BLACK;
    82. break;
    83. case 3:
    84. currentColor = WHITE;
    85. break;
    86. }
    87. }
    88. _getch();//按任意键退出
    89. closegraph();
    90. return 0;
    91. }

  • 相关阅读:
    MySQL图形管理工具的安装与使用
    【Docker 基础教程】侃侃而谈Docker镜像
    如何画好技术图
    【笔者感悟】笔者的工作感悟【七】
    信息学奥赛一本通:1148:连续出现的字符
    (一)Vue核心
    使用打表法找规律
    第3章 基础项目的搭建
    Java学习 --- super关键字
    公共命名空间和输入法
  • 原文地址:https://blog.csdn.net/qq_73185160/article/details/132894437