在Qt中同一个程序中,两个界面如何连接,点一下按钮,另一个界面弹出来,哪里的程序写在哪里。怎么调用。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Qt中同一个程序中,两个界面如何连接,点一下按钮,另一个界面弹出来,哪里的程序写在哪里。怎么调用。相关的知识,希望对你有一定的参考价值。

。。

直接在ui的构造函数connect(button1,SIGNAL(clicked()),this,SLOT(slot_function()));
在slot_function里面实例化对象 ,然后 show 就可以了。可以看一些例子追问

给个例子我参考一下(我用QT做的),例如一个helloword.cpp,一个maininterface.cpp 我如何点击helloword里的按钮(hello里有两个按钮)来弹出maininterface这个界面

追答

那你在int main 里面就要先helloword hello; hello.show();
在helloword的构造函数里connect(button1name,SIGNAL(clicked),this,SLOT(slot_function()));
void slot_function() ; 是helloword的public slots: 的方法;
具体代码:
class helloword
Q_OBJECT

public :
helloword()
connect(button1,SIGNAL(clicked()),this,SLOT(slot_function()));



public slots:
void slot_function()
maininterface mt;
mt.show();


private:
QPushButton button1;

......其它代码略

;
int main(.....)
....

helloword hello;

hello.show();

...

参考技术A 自己写槽函数 链接就可以了追问

具体的 给个例子我参考一下(我用QT做的),例如一个helloword.cpp,一个maininterface.cpp 我如何点击helloword里的按钮(hello里有两个按钮)来弹出maininterface这个界面

追答

先写maininterface这个类 然后在helloword.h 里
#include "maininterface"
... //你需要的头文件
public slots:
void maininterfaceshow()// 自己定义槽函数

。cpp文件
void helloword::maininterfaceshow()
//this->hide();隐藏你的hello窗口 可以隐藏 也可以不隐藏

maininterface myInterface;//新建一个你的窗口
myInterface.show()//显示

追问

没看懂。怎么连接的,不过也谢谢你

本回答被提问者采纳

如何调用Android系统程序详细信息界面

调用Android系统“应用程序信息(Application Info)”界面“Android系统设置->应用程序->管理应用程序”列表下,列出了系统已安装的应用程序。选择其中一个程序,则进入“应用程序信息(Application Info)”界面。这个界面显示了程序名称、版本、存储、权限等信息,并有卸载、停止、清除缓存等按钮,可谓功能不少。如果在编写相关程序时(比如任务管理器)可以调用这个面板,自然提供了很大的方便。那么如何实现呢?

在最新的Android SDK 2.3(API Level 9)中,提供了这样的接口。在文档路径

docs/reference/android/provider/Settings.html#ACTION_APPLICATION_DETAILS_SETTINGS

下,有这样的描述:

public static final String ACTION_APPLICATION_DETAILS_SETTINGS Since: API Level 9

Activity Action: Show screen of details about a particular application.
In some cases, a matching Activity may not exist, so ensure you safeguard against this.
Input: The Intent's data URI specifies the application package name to be shown, with the "package" scheme. That is "package:com.my.app".
Output: Nothing.
Constant Value: "android.settings.APPLICATION_DETAILS_SETTINGS"

就是说,我们只要以android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS作为Action;“package:应用程序的包名”作为URI,就可以用startActivity启动应用程序信息界面了。代码如下:

view plain
Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
Uri uri = Uri.fromParts(SCHEME, packageName, null);
intent.setData(uri);
startActivity(intent);

但是,在Android 2.3之前的版本,并没有公开相关的接口。
通过查看系统设置platform/packages/apps/Settings.git程序的源码,可以发现应用程序信息界面为InstalledAppDetails。
在这里(2.1)还有这里(2.2),我们可以分别看到Android2.1和Android2.2的应用管理程序(ManageApplications.java)是如何启动InstalledAppDetails的。
view plain
// utility method used to start sub activity
private void startApplicationDetailsActivity()
// Create intent to start new activity
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setClass(this, InstalledAppDetails.class);
intent.putExtra(APP_PKG_NAME, mCurrentPkgName);
// start new activity to display extended information
startActivityForResult(intent, INSTALLED_APP_DETAILS);


但是常量APP_PKG_NAME的定义并不相同。
2.2中定义为"pkg",2.1中定义为"com.android.settings.ApplicationPkgName"
那么,对于2.1及以下版本,我们可以这样调用InstalledAppDetails:
view plain
Intent i = new Intent(Intent.ACTION_VIEW);
i.setClassName("com.android.settings","com.android.settings.InstalledAppDetails");
i.putExtra("com.android.settings.ApplicationPkgName", packageName);
startActivity(i);

对于2.2,只需替换上面putExtra的第一个参数为"pkg"

综上,通用的调用“应用程序信息”的代码如下:
view plain
private static final String SCHEME = "package";
/**
* 调用系统InstalledAppDetails界面所需的Extra名称(用于Android 2.1及之前版本)
*/
private static final String APP_PKG_NAME_21 = "com.android.settings.ApplicationPkgName";
/**
* 调用系统InstalledAppDetails界面所需的Extra名称(用于Android 2.2)
*/
private static final String APP_PKG_NAME_22 = "pkg";
/**
* InstalledAppDetails所在包名
*/
private static final String APP_DETAILS_PACKAGE_NAME = "com.android.settings";
/**
* InstalledAppDetails类名
*/
private static final String APP_DETAILS_CLASS_NAME = "com.android.settings.InstalledAppDetails";
/**
* 调用系统InstalledAppDetails界面显示已安装应用程序的详细信息。 对于Android 2.3(Api Level
* 9)以上,使用SDK提供的接口; 2.3以下,使用非公开的接口(查看InstalledAppDetails源码)。
*
* @param context
*
* @param packageName
* 应用程序的包名
*/
public static void showInstalledAppDetails(Context context, String packageName)
Intent intent = new Intent();
final int apiLevel = Build.VERSION.SDK_INT;
if (apiLevel >= 9) // 2.3(ApiLevel 9)以上,使用SDK提供的接口
intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
Uri uri = Uri.fromParts(SCHEME, packageName, null);
intent.setData(uri);
else // 2.3以下,使用非公开的接口(查看InstalledAppDetails源码)
// 2.2和2.1中,InstalledAppDetails使用的APP_PKG_NAME不同。
final String appPkgName = (apiLevel == 8 ? APP_PKG_NAME_22
: APP_PKG_NAME_21);
intent.setAction(Intent.ACTION_VIEW);
intent.setClassName(APP_DETAILS_PACKAGE_NAME,
APP_DETAILS_CLASS_NAME);
intent.putExtra(appPkgName, packageName);

context.startActivity(intent);
参考技术A 参考这个网址
http://blog.csdn.net/ZhengZhiRen/article/details/6159750

直接复制最后的通用的调用代码即可
不过31行那里有个错误,把31行改为
intent.setAction("android.settings.APPLICATION_DETAILS_SETTINGS");
即可本回答被提问者采纳
参考技术B 参考这个网址
http://blog.csdn.net/ZhengZhiRen/article/details/6159750

直接复制最后的通用的调用代码即可
不过31行那里有个错误,把31行改为
intent.setAction("android.settings.APPLICATION_DETAILS_SETTINGS");
即可

以上是关于在Qt中同一个程序中,两个界面如何连接,点一下按钮,另一个界面弹出来,哪里的程序写在哪里。怎么调用。的主要内容,如果未能解决你的问题,请参考以下文章

想问一下大家,现在QT界面编程中怎么把界面做的好看一点?就比如这个界面,这些按钮的效果是用的啥技术

qt里如何实现点一下按钮,就把一个界面显示到当前界面上的scrollArea里,具体怎么做,最好给个例子

如何调用Android系统程序详细信息界面

qt stacked widget界面中如何用按钮实现换页

QT怎么触发一个按钮事件

如何连接两个程序(c++,qt)