免费注册 查看新帖 |

Chinaunix

广告
  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: iakuf
打印 上一主题 下一主题

使用Perl Gtk2来写GUI图形用户界面 [复制链接]

论坛徽章:
0
21 [报告]
发表于 2009-09-09 12:07 |只看该作者
请楼主详细阐述一下GTk2比起Tk, Win32::GUI的优势劣势.

论坛徽章:
0
22 [报告]
发表于 2009-09-09 12:09 |只看该作者
great.

论坛徽章:
1
辰龙
日期:2014-05-15 19:37:15
23 [报告]
发表于 2009-09-09 15:03 |只看该作者
原帖由 redwyz 于 2009-9-9 12:07 发表
请楼主详细阐述一下GTk2比起Tk, Win32::GUI的优势劣势.


Win32::GUI没用过,不过我想他不能在linux上跑吧,看这个名字.但GTK都是可以的.TK相比起来,中文支持不好,不开源.这也是为什么Redhat从kde换成gnome的原因

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
24 [报告]
发表于 2009-09-09 15:49 |只看该作者
原帖由 iakuf 于 2009-9-9 15:03 发表

Win32::GUI没用过,不过我想他不能在linux上跑吧,看这个名字.但GTK都是可以的.TK相比起来,中文支持不好,不开源.这也是为什么Redhat从kde换成gnome的原因

Tk 和 KDE 有什么关系吗?
另外,Perl/Tk 没有源代码吗?
不太了解。

BTW:Tk 中文支持不好这个是老新闻了,我没验证过是否是谣传,不过目前版本的 Tk 的中文支持还算不错。

论坛徽章:
1
辰龙
日期:2014-05-15 19:37:15
25 [报告]
发表于 2009-09-09 15:50 |只看该作者
原帖由 flw 于 2009-9-9 15:49 发表

Tk 和 KDE 有什么关系吗?
另外,Perl/Tk 没有源代码吗?
不太了解。

BTW:Tk 中文支持不好这个是老新闻了,我没验证过是否是谣传,不过目前版本的 Tk 的中文支持还算不错。



呵呵,不好意思,看成了QT.

论坛徽章:
0
26 [报告]
发表于 2009-09-12 17:20 |只看该作者
mark,学习。

论坛徽章:
0
27 [报告]
发表于 2009-09-13 11:56 |只看该作者
请问楼主windows下的 GTK-Perl 如果安装。

论坛徽章:
0
28 [报告]
发表于 2009-09-15 12:24 |只看该作者
先看看,以后用的上

论坛徽章:
0
29 [报告]
发表于 2009-09-15 17:00 |只看该作者
不错,不过perl写gui天生有两个缺陷假死和不能编译为二进制文件,如果用perl开发qq维护成本将相当高,perl在这方面不如python。

论坛徽章:
1
辰龙
日期:2014-05-15 19:37:15
30 [报告]
发表于 2009-10-01 22:24 |只看该作者

perl gtk拖动图标的例子

perl gtk拖动图标的例子
  1. #! /usr/bin/perl -w

  2. use strict;
  3. use Gtk2 '-init';
  4. use Glib qw/TRUE FALSE/;
  5. use Gtk2::SimpleList;

  6. #Declare our columns
  7. use constant C_MARKUP               => 0;
  8. use constant C_PIXBUF               => 1;

  9. #Declare our IDENDTIFIER ID's
  10. use constant ID_ICONVIEW            => 48;
  11. use constant ID_LABEL               => 49;
  12. use constant ID_URI                 => 50;

  13. #Add a tooltip object
  14. my $tooltips = Gtk2::Tooltips->new();

  15. #standard window creation, placement, and signal connecting
  16. my $window = Gtk2::Window->new('toplevel');
  17. $window->signal_connect('delete_event' => sub { Gtk2->main_quit; });
  18. $window->set_border_width(5);
  19. $window->set_position('center_always');

  20. #add and show the vbox
  21. $window->add(&ret_vbox);
  22. $window->show();

  23. #our main event-loop
  24. Gtk2->main();

  25. sub ret_vbox {

  26.     my $vbox = Gtk2::VBox->new(FALSE,5);
  27.     my $h_paned = Gtk2::HPaned->new();

  28.         my $v_paned = Gtk2::VPaned->new();
  29.         #get the iconview
  30.         $v_paned->pack1(create_iconview(),TRUE,FALSE);
  31.         #get the simple list where everything will be dropped into
  32.         $v_paned->pack2(create_simple_list(),TRUE,FALSE);

  33.     $h_paned->pack1($v_paned,TRUE,FALSE);

  34.         #create an eventbox to accept drag actions
  35.         my $event_box = Gtk2::EventBox->new();
  36.             my $label_drag_me = Gtk2::Label->new("Now Stanley,\nDO NOT drag this item");
  37.         $event_box->add($label_drag_me);

  38.         #Try and convince the user otherwise
  39.         $tooltips->set_tip ($event_box,
  40.             'No way! You have to drag it at least once!'.
  41.             'Drag it, and drop it into the bottom list'
  42.             );

  43.         #Setting up the Gtk2::Event Box instead of the Gtk2::Label, enabling it as
  44.         #a drag source
  45.         $event_box->drag_source_set (
  46.                                     ['button1_mask', 'button3_mask'],
  47.                                     ['copy'],
  48.                                     {
  49.                                     'target' => 'text/plain',
  50.                                     'flags' => [],
  51.                                     'info' => ID_LABEL,
  52.                                     },
  53.         );

  54.             my $text_to_drag = '<span foreground="red" size="x-large">"Well there\'s another nice mess you\'ve gotten me into."</span>';

  55.         #set up the data which needs to be fed to the drag destination (drop)
  56.         $event_box->signal_connect ('drag-data-get' => \&source_drag_data_get,$text_to_drag );

  57.     $h_paned->pack2($event_box,TRUE,FALSE);

  58. $vbox->add($h_paned);
  59. $vbox->show_all();
  60. return $vbox;
  61. }

  62. sub create_iconview {
  63. #---------------------------------------------------
  64. #Creates an Iconview in a ScrolledWindow. This -----
  65. #Iconview has the ability to drag items off it  -----
  66. #---------------------------------------------------

  67.     my $icon_string= undef;
  68.     my $tree_model = create_iconview_model();

  69.     my $icon_view = Gtk2::IconView->new_with_model($tree_model);
  70.     $icon_view->set_markup_column(C_MARKUP);
  71.     $icon_view->set_pixbuf_column(C_PIXBUF);

  72.     #Enable the Gtk2::IconView as a drag source
  73.     $icon_view->drag_source_set (
  74.                                 ['button1_mask', 'button3_mask'],
  75.                                 ['copy'],
  76.                                 {
  77.                                     'target' => 'STRING',
  78.                                     'flags' => [],
  79.                                     'info' => ID_ICONVIEW,
  80.                                 },
  81.                         );

  82.     #This is a nice to have. It changes the drag icon to that of the
  83.     #icon which are now selected and dragged (single selection mode)
  84.     $icon_view->signal_connect('drag-begin' => sub {
  85.         $icon_view->selected_foreach ( sub{

  86.                 my $iter =$tree_model->get_iter($_[1]);
  87.                 #set the text and pixbuf
  88.                 my $icon_pixbuf = $tree_model->get_value($iter,C_PIXBUF);
  89.                 $icon_string = $tree_model->get_value($iter,C_MARKUP);
  90.                 $icon_view->drag_source_set_icon_pixbuf ($icon_pixbuf);
  91.         } );
  92.     });

  93.     #set up the data which needs to be fed to the drag destination (drop)
  94.     $icon_view->signal_connect ('drag-data-get' => sub { source_drag_data_get(@_,$icon_string) } );
  95.    
  96.     #Standard scrolledwindow to allow growth
  97.     my $sw = Gtk2::ScrolledWindow->new(undef,undef);
  98.     $sw->set_policy('never','automatic');
  99.     $sw->add($icon_view);
  100.     $sw->set_border_width(6);
  101.     $sw->set_size_request(600,150);
  102.     return $sw;
  103. }

  104. sub create_iconview_model {
  105. #----------------------------------------------------
  106. #The Iconview needs a Gtk2::Treemodel implementation-
  107. #containing at least a Glib::String and -------------
  108. #Gtk2::Gdk::Pixbuf type. The first is used for the --
  109. #text of the icon, and the last for the icon self----
  110. #Gtk2::ListStore is ideal for this ------------------
  111. #----------------------------------------------------

  112.     my $list_store = Gtk2::ListStore->new(qw/Glib::String Gtk2::Gdk::Pixbuf/);

  113.     #******************************************************
  114.     #we populate the Gtk2::ListStore with Gtk2::Stock icons
  115.     #******************************************************

  116.     my $icon_factory = Gtk2::IconFactory->new();

  117.     foreach my $val(sort Gtk2::Stock->list_ids){
  118.         #get the iconset from the icon_factory
  119.         my $iconset = $icon_factory->lookup_default($val);
  120.         #try and extract the icon from it
  121. #        my $pixbuf = $iconset->render_icon(Gtk2::Style->new(),'none','normal','dnd',undef);
  122.         my $pixbuf = Gtk2::Gdk::Pixbuf->new_from_file("rdp.png");

  123.         #if there was a valid icon in the iconset, add it
  124.         if( defined $pixbuf ){

  125.             my $iter = $list_store->append;
  126.             $list_store->set (
  127.                         $iter,
  128.                         C_MARKUP, "<b>$val</b>",
  129.                         C_PIXBUF, $pixbuf,
  130.              );

  131.         }
  132.     }

  133.     return $list_store;
  134. }

  135. sub create_simple_list {
  136. #---------------------------------------------------
  137. #Creates a simple list with pixbuf and markup  -----
  138. #columns make this list the drop target for various-
  139. #drag sources --------------------------------------
  140. #---------------------------------------------------

  141.     my $slist = Gtk2::SimpleList->new ('' => 'pixbuf', ''  => 'markup');
  142.     $slist->set_rules_hint(TRUE);
  143.     $slist->set_headers_visible(FALSE);

  144.      #Also suggest to try Nautilus
  145.      $tooltips->set_tip ($slist,
  146.             'Drag a few files from Nautilus '.
  147.             'and drop it here'
  148.             );

  149.     #Create a target table to receive drops
  150.     my @target_table = (

  151.         {'target' => 'STRING',       'flags' => [], 'info' => ID_ICONVIEW   },
  152.         {'target' => "text/uri-list",'flags' => [], 'info' => ID_URI        },
  153.         {'target' => "text/plain",  'flags' => [], 'info' => ID_LABEL       },
  154.     );

  155.     #make this the drag destination (drop) for various drag sources
  156.     $slist->drag_dest_set('all', ['copy'], @target_table);

  157.     #do a callback as soon as drag data is received
  158.     $slist->signal_connect ('drag-data-received' => \&target_drag_data_received,$slist );

  159.     #Standard scrolledwindow to allow growth
  160.     my $sw = Gtk2::ScrolledWindow->new(undef,undef);
  161.     $sw->set_policy('never','automatic');
  162.     $sw->add($slist);
  163.     $sw->set_border_width(6);
  164.     $sw->set_size_request(600,150);
  165.     return $sw;
  166. }

  167. sub target_drag_data_received {
  168. #---------------------------------------------------
  169. #Extract the data which was set up during the  -----
  170. #'drag-data-get' event which fired just before -----
  171. #the 'drag-data-received' event. Also checks which--
  172. #source supplied the data, and handle accordingly----
  173. #---------------------------------------------------

  174.     my ($widget, $context, $x, $y, $data, $info, $time,$slist) = @_;

  175.     my $icon_factory = Gtk2::IconFactory->new();

  176.     if ($info eq ID_LABEL){
  177.         my $iconset = $icon_factory->lookup_default('gtk-no');
  178.         my $pixbuf = $iconset->render_icon(Gtk2::Style->new(),'none','normal','menu',undef);
  179.         push @{$slist->{data}}, [ $pixbuf, $data->data ];
  180.     }

  181.     if ($info eq ID_URI){
  182.         my $iconset = $icon_factory->lookup_default('gtk-yes');
  183.         my $pixbuf = $iconset->render_icon(Gtk2::Style->new(),'none','normal','menu',undef);

  184.         foreach ($data->get_uris){
  185.             push @{$slist->{data}},
  186.                     [ $pixbuf, '<span foreground="forest green" size="x-small">'.$_.'</span>' ];
  187.         }
  188.     }

  189.     if ($info eq ID_ICONVIEW){

  190.         my $no_markup = $data->data;
  191.         $no_markup =~ s/<[^>]*>//g;
  192.         my $iconset = $icon_factory->lookup_default($no_markup);
  193.         my $pixbuf = $iconset->render_icon(Gtk2::Style->new(),'none','normal','menu',undef);
  194.         push @{$slist->{data}}, [ $pixbuf, $data->data ];
  195.     }

  196.     $context->finish (0, 0, $time);
  197. }

  198. sub source_drag_data_get {
  199. #---------------------------------------------------
  200. #This sets up the data of the drag source. It is ---
  201. #required before the 'drag-data-received' event ----
  202. #fires which can be used to extract this data ------
  203. #---------------------------------------------------

  204.     my ($widget, $context, $data, $info, $time,$string) = @_;

  205.     $data->set_text($string,-1);
  206. }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP