启动程序,使其在启动应用程序的中心打开

发布于 2024-09-06 12:22:11 字数 104 浏览 4 评论 0原文

启动程序,使其在启动应用程序的中心打开。

平台:Mac 启动机制:使用 system() 启动 C++ 程序

目​​前我观察到启动的程序将其推到屏幕的大部分左侧。

Launching a program so that it opens in center of the launching application.

Platform: Mac
Launching mechanism: a c++ program launches using system()

Currently I observe the program launched pushes it to left most part of the screen.

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

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

发布评论

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

评论(2

听闻余生 2024-09-13 12:22:11

启动程序,使其在启动应用程序的中心打开。

在 Mac OS X 系统上,程序不会启动到屏幕的特定区域。当它们启动时,它们成为“前端”应用程序,并用自己的菜单接管菜单栏区域。他们可能会在打开窗户后选择打开或不打开。

查明相关程序是否接受 Apple 事件/applescript 命令。如果是这样,您可以要求程序将窗口放置在特定位置。

另外,如果您仍然需要使用 system,您可以使用 osascript 命令发送 Apple 事件。

Launching a program so that it opens in center of the launching application.

On Mac OS X systems, programs don't launch into a specific area of the screen. When they launch, they become the "front" application, and take over the menubar area with their own menus. They may choose to open a window after they have opened, or not.

Find out if the program in question accepts apple events / applescript commands. If so, you may be able to ask the program to position a window in a particular location.

Also, if you still have to use system, you can send apple events with the osascript command.

愚人国度 2024-09-13 12:22:11

如果您使用的是system,那么您实际上无能为力,因为您已经隐式地将除启动参数之外的进程的所有内容委托给了操作系统。可能有多种方法可以使用其他特定于 OSX 的 API 来完成此操作,但不能使用您在此处列出的参数。

If you're using system, there's really nothing you can do, since you've implicitly delegated everything about the process except its startup args to the OS. There may be ways to accomplish this using other OSX-specific APIs, but not with the parameters you've outlined here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文