使用 perl / tk 编辑>复制/粘贴实现

发布于 2024-08-23 22:36:59 字数 236 浏览 6 评论 0原文

我正在使用 Perl/Tk 为应用程序构建 GUI。我计划添加一个带有标准剪切、复制和粘贴选项的编辑菜单。在这里我意识到我从未真正使用 perl 与剪贴板进行过交互。

谁能给我一个有关在 Perl 中弄乱剪贴板的信息的链接?是否有专门用于此类功能的 perl 模块?

如果我与剪贴板交互,我是否必须将代码修改为特定于平台的代码,因为它是主机操作系统的一部分,而不是我的应用程序本身的一部分?

预先感谢您的帮助!

I'm using Perl/Tk to build the GUI for an application. I plan on adding an edit menu to it with standard cut, copy, and paste options. Right here is where I realized that I've never actually interacted with the clipboard using perl.

Can anyone give me a link to information about messing with clipboard in perl? Is there a perl module for those kind of functions in specific?

And would I have to modify my code to be platform-specific if I interact with the clipboard since it's part of the host OS, and not part of my application itself?

Thanks in advance for the help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧人 2024-08-30 22:36:59

您是否在寻找 Win32::Clipboard

Are you looking for Win32::Clipboard?

于我来说 2024-08-30 22:36:59
use strict;
use Win32::GuiTest qw(:ALL);
use Win32::Clipboard;
use POSIX qw(strftime);

my @windows = FindWindowLike( 0, "Total", "" );
die "Could not find Total\n" if not @windows;

SetForegroundWindow( $windows[0] );

&send_keys;

sub send_keys {
my $dir=strftime( '%Y%m%d', localtime(time) );
my $CLIP = Win32::Clipboard();
  $CLIP->Set($dir);
  $CLIP->WaitForChange();
    SendKeys("^V");
#    SendKeys("{ENTER}");
}
use strict;
use Win32::GuiTest qw(:ALL);
use Win32::Clipboard;
use POSIX qw(strftime);

my @windows = FindWindowLike( 0, "Total", "" );
die "Could not find Total\n" if not @windows;

SetForegroundWindow( $windows[0] );

&send_keys;

sub send_keys {
my $dir=strftime( '%Y%m%d', localtime(time) );
my $CLIP = Win32::Clipboard();
  $CLIP->Set($dir);
  $CLIP->WaitForChange();
    SendKeys("^V");
#    SendKeys("{ENTER}");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文