gpt4 book ai didi

C - Gtk3- 开罗 - DrawArea - 平面笛卡尔 - 如何添加文本?

转载 作者:行者123 更新时间:2023-11-30 16:57:48 26 4
gpt4 key购买 nike

我的目的(用于个人练习)是创建一个平面笛卡尔,其中我代表一些数学函数。因此我需要交易坐标,如何在 DrawArea 上添加文本?我搜索过,但没有找到任何关于使用 gtk3-C 绘制文本的内容(示例 ecc)。

其他,您是否有一些有关 DrawArea- Cairo-Pango 或其他有关与 gtk3 一起使用的图形 2d-3d 的教程指南?

PS:我是初学者,但为什么有人说gtk/c不好?仅仅因为更复杂?谢谢大家

最佳答案

通过切换到 GooCanvas,您可以稍微简化您的生活。可以说,使用 Cairo 和较低级别的工具更高效、更快,但可能更适合绘制小部件(按钮等)。

请注意,DrawingArea 并不是真正的绘图工具 - 它只是一个空的小部件,您可以在其中执行操作。

使用像 GooCanvas 这样的 Canvas 可以简化您的生活,通过处理重绘事件,并为您提供有用的功能,例如分层绘制、鼠标事件、打印等。

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# test_goo.py
#
# Copyright 2016 John Coppens <john@jcoppens.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
#


from gi.repository import Gtk, GooCanvas

class MainWindow(Gtk.Window):
def __init__(self):
super(MainWindow, self).__init__()
self.connect("destroy", lambda x: Gtk.main_quit())

canvas = GooCanvas.Canvas()
root_layer = canvas.get_root_item()

# Draw a rectangle:
rect = GooCanvas.CanvasRect(
parent = root_layer,
x = 20, y = 50,
width = 60, height = 75,
line_width = 2.0,
stroke_color = "Yellow")

# Draw some text:
text1 = GooCanvas.CanvasText(
parent = root_layer,
x = 50, y = 70,
font = "Times 25",
text = "Hi there",
fill_color = "red")

self.add(canvas)
self.show_all()

def run(self):
Gtk.main()


def main(args):
mainwdw = MainWindow()
mainwdw.run()

return 0

if __name__ == '__main__':
import sys
sys.exit(main(sys.argv))

人们经常对他们并不真正了解的事情说坏话。通常,我更喜欢 Python,因为它的生产力 - 用 C 编写的同一个程序需要两次(或更多)编写和调试。当速度不是问题时(对于现代机器来说几乎从来都不是问题),Python 就很棒。

以下是一些引用资料:

关于C - Gtk3- 开罗 - DrawArea - 平面笛卡尔 - 如何添加文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39334846/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com