亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? fxmainwindow.cpp

?? linux-下的fetion-0.8.1。包括所有源代碼
?? CPP
?? 第 1 頁 / 共 4 頁
字號:
	switch (reason) {		case QSystemTrayIcon::Trigger:			if (showNewMsgDlg())				return;			//here codes should be ajust after later..			if (fx_status == SYS_RELOGIN) //relogin state will not handle this message..				return;			trayMessageClicked();#if MAC_OS			this->setVisible( !this->isVisible());			if(this->isVisible())			{				this->activateWindow();							setWindowState (Qt::WindowNoState ) ;			}#endif			break;		case QSystemTrayIcon::DoubleClick:			//here codes should be ajust after later..			if (fx_status == SYS_RELOGIN) //relogin state will not handle this message..				return;			trayMessageClicked();			if ( this->isVisible() && windowState() != Qt::WindowNoState )			{				this->activateWindow();							setWindowState ( Qt::WindowNoState ) ;				return;			}			this->setVisible( !this->isVisible());			if(this->isVisible())			{				this->activateWindow();							setWindowState ( Qt::WindowNoState ) ;			}			break;		case QSystemTrayIcon::MiddleClick:			break;		default:			;	}}void FxMainWindow::init_UI(){	Settings::instance().setMainWindow(this);#if 1	Settings::instance().setUser((qlonglong)strtol(fx_get_usr_uid(), NULL, 10));#else	Settings::instance().setUser(1000);#endif	if (Settings::instance().isMainWindowTopHint())		this->setWindowFlags(Qt::WindowStaysOnTopHint);	//remove the maximizeButtonHint	this->setWindowFlags( windowFlags() ^ Qt::WindowMaximizeButtonHint);#if WIN32	setWindowTitle(QString::fromUtf8(fx_get_usr_show_name()) + "--Win Fetion");#else#if MAC_OS	setWindowTitle(QString::fromUtf8(fx_get_usr_show_name()) + "--Mac Fetion");#else	setWindowTitle(QString::fromUtf8(fx_get_usr_show_name()) + "--Linux Fetion");#endif#endif	this->setWindowIcon(getSysTrayIcon(1));		move(Settings::instance().MainWinPos());	//UI set all images of main windows	//****************************************************/	LibFetion_image->setPixmap(getLibFetionImage());	UI_Portrait->setPixmap (getPortraitImage());	UI_ImpresaBK->setPixmap (getImpresaBKImage());	UI_SearchBK->setPixmap (getSearchBKImage());	UI_AddFriend->setPixmap (getAddImage());	UI_Search->setText(tr("search friends..."));	UI_Edit_NiceName->setText(QString::fromUtf8(fx_get_usr_show_name()));	UI_Edit_NiceName->hide();	setUINiceName();	version->setText(VERSION_NO);	///****************************************************/	///************* init some contorl ***************************************/	view->header()->setHidden(1);	view->setRootIsDecorated(true);	//add all account to main view	buddyopt = new BuddyOpt(view);	//init search control	search->header()->setHidden(1);	search->setRootIsDecorated(true);	search->hide();	msgwin = new FxMsgWindow(0);	msgwin->setMainWind(this);	//fx_updata_account_info_all();	//****************************************************//}void FxMainWindow::initAllActions(){	OnlineAct = new QAction(tr("online"), this);	OnlineAct->setIcon(getOnlineStatusIcon(FX_STATUS_ONLINE));	connect(OnlineAct, SIGNAL(triggered()), this, SLOT(setOnlineStatus()));	OfflineAct = new QAction(tr("offline"), this);	OfflineAct->setIcon(getOnlineStatusIcon(FX_STATUS_OFFLINE));	connect(OfflineAct, SIGNAL(triggered()), this, SLOT(setOfflineStatus()));	BusyAct = new QAction(tr("busy"), this);	BusyAct->setIcon(getOnlineStatusIcon(FX_STATUS_BUSY));	connect(BusyAct, SIGNAL(triggered()), this, SLOT(setBusyStatus()));	AwayAct = new QAction(tr("away"), this);	AwayAct->setIcon(getOnlineStatusIcon(FX_STATUS_AWAY));	connect(AwayAct, SIGNAL(triggered()), this, SLOT(setAwayStatus()));	acceptSMSAct = new QAction(tr("accept SMS"), this);	connect(acceptSMSAct, SIGNAL(triggered()), this, SLOT(setacceptSMS()));	refuseSMSAct = new QAction(tr("refuse SMS"), this);	connect(refuseSMSAct, SIGNAL(triggered()), this, SLOT(setrefuseSMS()));	if (fx_get_user_refuse_sms_day()) //is get from libfetion..		{		refuseSMSAct->setIcon(getMenuIcon(ApplyIcon));		acceptSMSAct->setIcon(QPixmap());	} else { 		acceptSMSAct->setIcon(getMenuIcon(ApplyIcon));		refuseSMSAct->setIcon(QPixmap());	}	addBuddyAct = new QAction(tr("add friend"), this);	addBuddyAct->setStatusTip(tr("add friend"));	addBuddyAct->setIcon(getMenuIcon(AddBuddyIcon));	connect(addBuddyAct, SIGNAL(triggered()), this, SLOT(addBuddy()));	sendselfAct = new QAction(tr("send sms to self"), this);	sendselfAct->setStatusTip(tr("send sms to self"));	sendselfAct->setIcon(getMenuIcon(SMSBuddyIcon));	connect(sendselfAct, SIGNAL(triggered()), this, SLOT(sendself()));	sendgroupsmsAct = new QAction(tr("send group sms"), this);	sendgroupsmsAct->setStatusTip(tr("send group sms"));	sendgroupsmsAct->setIcon(getMenuIcon(SMSBuddyIcon));	connect(sendgroupsmsAct, SIGNAL(triggered()), this, SLOT(sendgroupsms()));	exitAct = new QAction(tr("Exit"), this);	exitAct->setShortcut(tr("Ctrl+Q"));	exitAct->setStatusTip(tr("Exit the application"));	exitAct->setIcon(getMenuIcon(ExitIcon));	connect(exitAct, SIGNAL(triggered()), this, SLOT(tmp_exit()));	personlInfoAct = new QAction(tr("personlInfo"), this);	personlInfoAct->setStatusTip(tr("personlInfo"));	personlInfoAct->setIcon(getMenuIcon(GetInfoBuddyIcon));	connect(personlInfoAct, SIGNAL(triggered()), this, SLOT(personlInfo()));	CheckNewVersionAct = new QAction(tr("checkNewVersion"), this);	CheckNewVersionAct->setStatusTip(tr("checkNewVersion"));	CheckNewVersionAct->setIcon(getMenuIcon(AboutIcon));	connect(CheckNewVersionAct, SIGNAL(triggered()), this, SLOT(checkNewVersion()));	ReportBugAct = new QAction(tr("reportBugAct"), this);	ReportBugAct->setStatusTip(tr("reportBugAct"));	ReportBugAct->setIcon(getMenuIcon(AboutIcon));	connect(ReportBugAct, SIGNAL(triggered()), this, SLOT(reportBugAct()));	AboutLibFetionAct = new QAction(tr("aboutLibFetion"), this);	AboutLibFetionAct->setStatusTip(tr("aboutLibFetion"));	AboutLibFetionAct->setIcon(getMenuIcon(AboutIcon));	connect(AboutLibFetionAct, SIGNAL(triggered()), this, SLOT(aboutLibFetion()));	AboutCMAct = new QAction(tr("aboutChinaMobile"), this);	AboutCMAct->setStatusTip(tr("aboutChinaMobile"));	AboutCMAct->setIcon(getMenuIcon(AboutIcon));	connect(AboutCMAct, SIGNAL(triggered()), this, SLOT(aboutCM()));	AutoLoginAct = new QAction(tr("autologin"), this);	if (isAutoLogin(NULL, NULL, NULL))		AutoLoginAct->setIcon(getMenuIcon(ApplyIcon));	else 		AutoLoginAct->setIcon(getMenuIcon(CancelIcon));	AutoLoginAct->setStatusTip(tr("autologin"));	connect(AutoLoginAct, SIGNAL(triggered()), this, SLOT(menu_setAutoLogin()));	MuteAct = new QAction(tr("mute"), this);	if (Settings::instance().isMute())		MuteAct->setIcon(getMenuIcon(ApplyIcon));	else 		MuteAct->setIcon(getMenuIcon(CancelIcon));	MuteAct->setStatusTip(tr("autoshowmsg"));	connect(MuteAct, SIGNAL(triggered()), this, SLOT(menu_setmute()));	IsAutoShowMsgAct = new QAction(tr("autoshowmsg"), this);#if MAC_OS	IsAutoShowMsgAct->setVisible(false); #endif	if (Settings::instance().isAutoShowMsg())		IsAutoShowMsgAct->setIcon(getMenuIcon(ApplyIcon));	else 		IsAutoShowMsgAct->setIcon(getMenuIcon(CancelIcon));	IsAutoShowMsgAct->setStatusTip(tr("autoshowmsg"));	connect(IsAutoShowMsgAct, SIGNAL(triggered()), this, SLOT(menu_setautoshowmsg()));#if 0	SetUndgeMsgAct = new QAction(tr("undgemsg"), this);	if (1)	//if (!isAutoShowMsg(fx_get_usr_uid()))		SetUndgeMsgAct->setIcon(getMenuIcon(CancelIcon));	else 		SetUndgeMsgAct->setIcon(getMenuIcon(ApplyIcon));	SetUndgeMsgAct->setStatusTip(tr("undgemsg"));	connect(SetUndgeMsgAct, SIGNAL(triggered()), this, SLOT(menu_setundgemsg()));#endif	SetLongSMSAct = new QAction(tr("catsms"), this);	if (Settings::instance().isEnableLongSMS())		SetLongSMSAct->setIcon(getMenuIcon(ApplyIcon));	else 		SetLongSMSAct->setIcon(getMenuIcon(CancelIcon));	SetLongSMSAct->setStatusTip(tr("catsms"));	connect(SetLongSMSAct, SIGNAL(triggered()), this, SLOT(menu_setlongsms()));	SaveMsgHistroyAct = new QAction(tr("savemsghistroy"), this);	SaveMsgHistroyAct->setStatusTip(tr("savemsghistroy"));	SaveMsgHistroyAct->setIcon(getMenuIcon(HistoryIcon));	connect(SaveMsgHistroyAct, SIGNAL(triggered()), this, SLOT(saveMsgHistroy()));	CleanMsgHistroyAct = new QAction(tr("cleanmsghistroy"), this);	CleanMsgHistroyAct->setStatusTip(tr("cleanmsghistroy"));	CleanMsgHistroyAct->setIcon(getMenuIcon(HistoryIcon));	connect(CleanMsgHistroyAct, SIGNAL(triggered()), this, SLOT(cleanMsgHistroy()));			ConfigAppAct = new QAction(tr("moresetting"), this);	ConfigAppAct->setStatusTip(tr("moresetting"));	ConfigAppAct->setIcon(getMenuIcon(OptionsIcon));	connect(ConfigAppAct, SIGNAL(triggered()), this, SLOT(showConfigDlg()));	AddGroupAct = new QAction(tr("add group"), this);	AddGroupAct->setIcon(getMenuIcon(AddGroupIcon));	connect(AddGroupAct, SIGNAL(triggered()), this, SLOT(addGroup()));	DeleteGroupAct = new QAction(tr("delete group"), this);	DeleteGroupAct->setIcon(getMenuIcon(DeleteGroupIcon));	connect(DeleteGroupAct, SIGNAL(triggered()), this, SLOT(deleteGroup()));	ReNameGroupAct = new QAction(tr("rename group"), this);	ReNameGroupAct->setIcon(getMenuIcon(ReNameGroupIcon));	connect(ReNameGroupAct, SIGNAL(triggered()), this, SLOT(renameGroup()));	ReNameBuddyAct = new QAction(tr("rename buddy"), this);	ReNameBuddyAct->setIcon(getMenuIcon(ReNameBuddyIcon));	connect(ReNameBuddyAct, SIGNAL(triggered()), this, SLOT(renameBuddy()));	IMBuddyAct = new QAction(tr("im buddy"), this);	IMBuddyAct->setIcon(getMenuIcon(IMBuddyIcon));	connect(IMBuddyAct, SIGNAL(triggered()), this, SLOT(imBuddy()));	SMSBuddyAct = new QAction(tr("sms buddy"), this);	SMSBuddyAct->setIcon(getMenuIcon(SMSBuddyIcon));	connect(SMSBuddyAct, SIGNAL(triggered()), this, SLOT(smsBuddy()));	GetInfoBuddyAct = new QAction(tr("get info buddy"), this);	GetInfoBuddyAct->setIcon(getMenuIcon(GetInfoBuddyIcon));	connect(GetInfoBuddyAct, SIGNAL(triggered()), this, SLOT(getInfoBuddy()));	RefreshInfoBuddyAct = new QAction(tr("updata info buddy"), this);	RefreshInfoBuddyAct->setIcon(getMenuIcon(RefreshBuddyIcon));	connect(RefreshInfoBuddyAct, SIGNAL(triggered()), this, SLOT(updataInfoBuddy()));	DeleteBuddyAct = new QAction(tr("delete buddy"), this);	DeleteBuddyAct->setIcon(getMenuIcon(DeleteBuddyIcon));	connect(DeleteBuddyAct, SIGNAL(triggered()), this, SLOT(deleteBuddy()));	AddBlackBuddyAct = new QAction(tr("add to black list"), this);	AddBlackBuddyAct->setIcon(getMenuIcon(BackInBuddyIcon));	connect(AddBlackBuddyAct, SIGNAL(triggered()), this, SLOT(addBlackBuddy()));	RemoveBlackBuddyAct = new QAction(tr("remove frome black list"), this);	RemoveBlackBuddyAct->setIcon(getMenuIcon(RemoveBlackIcon));	connect(RemoveBlackBuddyAct, SIGNAL(triggered()), this, SLOT(removeBlackBuddy()));	IMQunAct = new QAction(tr("im qun"), this);	IMQunAct->setIcon(getMenuIcon(IMBuddyIcon));	connect(IMQunAct, SIGNAL(triggered()), this, SLOT(imQun()));	SMSQunAct = new QAction(tr("sms qun"), this);	SMSQunAct->setIcon(getMenuIcon(SMSBuddyIcon));	connect(SMSQunAct, SIGNAL(triggered()), this, SLOT(smsQun()));	GetInfoQunAct = new QAction(tr("getinfo qun"), this);	GetInfoQunAct->setIcon(getMenuIcon(GetInfoBuddyIcon));	connect(GetInfoQunAct, SIGNAL(triggered()), this, SLOT(getInfoQun()));}void FxMainWindow::createMenu(){	QMenu *sendSmsMenu; //tmp menu of send sms	reloginTrayMenu = new QMenu(this);	reloginTrayMenu->addAction(exitAct);	trayIconMenu = new QMenu(this);	traySetStatusMenu = trayIconMenu->addMenu(tr("change online status"));	traySetStatusMenu->setIcon( getOnlineStatusIcon(fx_get_user_state()));	traySetStatusMenu->addAction(OnlineAct);	traySetStatusMenu->addAction(OfflineAct);	traySetStatusMenu->addAction(BusyAct);	traySetStatusMenu->addAction(AwayAct);	sendSmsMenu  = trayIconMenu->addMenu(tr("sendsms"));	sendSmsMenu->setIcon(getMenuIcon(SMSBuddyIcon));	sendSmsMenu->addAction(sendselfAct);	sendSmsMenu->addAction(sendgroupsmsAct);	trayIconMenu->addAction(addBuddyAct); 	trayIconMenu->addAction(personlInfoAct); 	trayIconMenu->addSeparator();	trayIconMenu->addAction(exitAct);	buddySetStatusMenu = buddyMenu->addMenu(tr("change online status"));	buddySetStatusMenu->setIcon( getOnlineStatusIcon(fx_get_user_state()));	buddySetStatusMenu->addAction(OnlineAct);	buddySetStatusMenu->addAction(OfflineAct);	buddySetStatusMenu->addAction(BusyAct);	buddySetStatusMenu->addAction(AwayAct);	buddySetStatusMenu->addSeparator();	buddySetStatusMenu->addAction(acceptSMSAct);	buddySetStatusMenu->addAction(refuseSMSAct);	buddyMenu->addMenu(buddySetStatusMenu );	sendSmsMenu  = buddyMenu->addMenu(tr("sendsms"));	sendSmsMenu->setIcon(getMenuIcon(SMSBuddyIcon));	sendSmsMenu->addAction(sendselfAct);	sendSmsMenu->addAction(sendgroupsmsAct);	buddyMenu->addAction(addBuddyAct); 	buddyMenu->addAction(personlInfoAct); 	buddyMenu->addSeparator();	buddyMenu->addAction(exitAct);	//menuSetting->addAction (SetImpresaAct); 	menuSetting->addAction (AutoLoginAct); 	menuSetting->addAction (MuteAct); 	menuSetting->addAction (IsAutoShowMsgAct); 	//menuSetting->addAction (SetUndgeMsgAct); 	//menuSetting->addAction (SetLongSMSAct); 		msgHistroyMenu = menuSetting->addMenu(tr("msghistroy"));	msgHistroyMenu->setIcon(getMenuIcon(HistoryIcon));	msgHistroyMenu->addAction (SaveMsgHistroyAct); 	msgHistroyMenu->addAction (CleanMsgHistroyAct); 	menuSetting->addAction (ConfigAppAct); 	menuAbout->addAction (CheckNewVersionAct);	menuAbout->addAction (ReportBugAct);	menuAbout->addAction (AboutLibFetionAct);	menuAbout->addAction (AboutCMAct);}void FxMainWindow::init_slot_signal(){#if 0		connect(UI_ImpresaBK, SIGNAL(clicked ()),			this, SLOT(UI_enable_impresa()));	connect(UI_SearchBK, SIGNAL(clicked ()), 			this, SLOT(UI_enable_search()));#endif	connect(UI_Impresa, SIGNAL(clicked ()),			this, SLOT(UI_enable_impresa()));	connect(UI_Search, SIGNAL(clicked ()), 			this, SLOT(UI_enable_search()));	connect(UI_AddFriend, SIGNAL(clicked ()), this, SLOT(addBuddy()));	connect(UI_Portrait, SIGNAL(clicked ()), this, SLOT(showPortrait()));	connect(UI_NiceName, SIGNAL(clicked ()), this, SLOT(showNiceNameEdit()));	connect(UI_Edit_NiceName, SIGNAL(editingFinished ()), this, SLOT(changeNiceName ()));	connect(UI_Edit_NiceName, SIGNAL(outfocus ()), UI_Edit_NiceName, SLOT(hide ()));	connect(UI_Impresa, SIGNAL(editingFinished ()), this, SLOT(changeImpresa ()));	connect(UI_Search, SIGNAL(editingFinished ()), this, SLOT(SearcheditingFinished ()));	connect(UI_Impresa, SIGNAL(infocus ()), this, SLOT(ImpresaFocusIn ()));	connect(UI_Search, SIGNAL(infocus ()), this, SLOT(SearchFocusIn ()));	connect(UI_Search, SIGNAL(textChanged (const QString &) ), this, SLOT(SearchtextChanged (const QString &)));	if(isHaveTray) { 		connect(trayIcon, SIGNAL(messageClicked()), this, SLOT(trayMessageClicked()));		connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),				this, SLOT(trayIconActivated(QSystemTrayIcon::ActivationReason)));	}	connect(&minimizedTimer, SIGNAL(timeout()), this, SLOT(minimizedWind()));	connect(&trayFlickTimer, SIGNAL(timeout()), this, SLOT(flickerTray()));	connect(&reloginTimer, SIGNAL(timeout()), this, SLOT(relogin_timer()));	connect(search, SIGNAL(itemDoubleClicked (QTreeWidgetItem* , int) ), 			this, SLOT(searchaccountDoubleClicked ( QTreeWidgetItem *, int)));	connect(view, SIGNAL(itemDoubleClicked (QTreeWidgetItem* , int) ), 			this, SLOT(accountDoubleClicked ( QTreeWidgetItem *, int)));	connect(view, SIGNAL(itemPressed (QTreeWidgetItem* , int) ), 			this, SLOT(accountPressed ( QTreeWidgetItem *, int)));	connect(this, SIGNAL(signal_Current_Version(int)), 			this, SLOT( haveCurrentVersionMessage(int) ) );	connect(this, SIGNAL(signal_AddAccountApp(char*, char*)), 			this, SLOT( haveAddAccountAppMessage(char*, char*) ) );	connect(this, SIGNAL(signal_MoveGroup(qlonglong, int)), 			this, SLOT( haveMoveGroupMessage(qlonglong, int) ) );	connect(this, SIGNAL(signal_NewSysMsg(qlonglong) ), 			this, SLOT( haveNewSysMessage(qlonglong) ) );	connect(this, SIGNAL(signal_NewMsg(qlonglong) ), 			this, SLOT( haveNewMessage(qlonglong) ) );	connect(this, SIGNAL(signal_NewQunMsg(qlonglong) ), 			this, SLOT( haveNewQunMessage(qlonglong) ) );	connect(this, SIGNAL(signal_UpdateAcInfo(qlonglong) ), 			this, SLOT( updateAccountInfo(qlonglong) ) );	connect(this, SIGNAL(signal_SysDialogMsg(int, int, qlonglong)), 			this, SLOT( slot_SysDialogMsg(int, int, qlonglong)) );	connect(this, SIGNAL(signal_SystemNetErr(int)), 			this, SLOT( slot_SystemNetErr(int)) );	connect(this, SIGNAL(signal_DeRegistered()), 			this, SLOT( slot_DeRegistered()) );	connect(this, SIGNAL(signal_del_buddy(int, int, qlonglong)), 			this, SLOT( slot_del_buddy(int, int, qlonglong)) );	connect(this, SIGNAL(signal_set_nickname_ok()), this, SLOT(setUINiceName()));	connect(this, SIGNAL(signal_set_state(int)), 			this, SLOT( slot_set_state(int)) );	connect(this, SIGNAL(signal_add_group(int, int, qlonglong)), 			this, SLOT( slot_add_group(int, int, qlonglong)) );	connect(this, SIGNAL(signal_del_group(int, int, qlonglong)), 			this, SLOT( slot_del_group(int, int, qlonglong)) );	connect(this, SIGNAL(signal_reName_group(int, int, qlonglong)), 			this, SLOT( slot_reName_group(int, int, qlonglong)) );	connect(this, SIGNAL(signal_reName_buddy(int, int, qlonglong)), 			this, SLOT( slot_reName_buddy(int, int, qlonglong)) );	connect(this, SIGNAL(signal_add_buddy(int, int, qlonglong)), 			this, SLOT( slot_add_buddy(int, int, qlonglong)) );	connect(this, SIGNAL(signal_UpdateSmsDay(int) ), 			this, SLOT( slot_updateSmsDay(int) ) );}void FxMainWindow::showPortrait(){	buddySetStatusMenu->exec(QCursor::pos());}void FxMainWindow::showNiceNameEdit(){	UI_Edit_NiceName->setText(QString::fromUtf8(fx_get_usr_show_name()));	UI_Edit_NiceName->show();	UI_Edit_NiceName->setFocus();}void FxMainWindow::addBuddy(){	this->show();	tmp_addBuddy = new FxAddBuddy(this);	tmp_addBuddy->exec();	//fix a bug when addbuddy show, and mainwindow is hide, quit the addbuddy, 	//mainwindows will quit too.	this->show(); 	delete tmp_addBuddy;	tmp_addBuddy = NULL;}void FxMainWindow::sendgroupsms(){	FxSendGroupSMS * groupSms = new FxSendGroupSMS(this, this);	groupSms->show();}void FxMainWindow::sendself(){	msgwin->addAccount((qlonglong)strtol(fx_get_usr_uid(), NULL, 10), true);	/*	   FxSmsWindow *smswin = new FxSmsWindow(this);	   smswin->show();	   */}void FxMainWindow::about(){	QMessageBox::about(this, tr("About Menu"),			tr("The <b>Menu</b> example shows how to create "				"menu-bar menus and context menus."));}Account_Info* FxMainWindow::getAc_InfoOfCurrentItem(){	QTreeWidgetItem *item = view->currentItem ();	if(!item)		return NULL;	if(!item->parent()) //it is a account		return NULL;#if MS_VC6	Account_Info *ac_info =(Account_Info*)(item->data(0, Qt::UserRole).toUInt());#else	Account_Info *ac_info =item->data(0, Qt::UserRole).value<Account_Info*>();#endif	return ac_info;}Group_Info* FxMainWindow::getGp_InfoOfCurrentItem(){	QTreeWidgetItem *item = view->currentItem ();	if(!item)		return NULL;	if(item->parent()) //it is a account		return NULL;#if MS_VC6	Group_Info *group_info =(Group_Info *)(item->data(0, Qt::UserRole).toUInt() );#else	Group_Info *group_info = item->data(0, Qt::UserRole).value<Group_Info*>();#endif	return group_info;}Qun_Info* FxMainWindow::getQun_InfoOfCurrentItem(){	QTreeWidgetItem *item = view->currentItem ();

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
蜜桃视频在线观看一区| 亚洲一区国产视频| 久久午夜羞羞影院免费观看| 日韩一区二区三区三四区视频在线观看| 欧美精品一区二区精品网| 久久精品人人做人人爽97| 中文字幕欧美一| 日本美女一区二区三区视频| 午夜伦欧美伦电影理论片| 日韩av不卡一区二区| 国产成人精品三级| 91蜜桃婷婷狠狠久久综合9色| 欧美日韩亚洲国产综合| 欧美mv和日韩mv的网站| 中文字幕一区日韩精品欧美| 视频一区欧美日韩| 波多野结衣中文字幕一区| 8x福利精品第一导航| 国产精品久久久久久户外露出| 婷婷丁香久久五月婷婷| 风间由美一区二区av101| 欧美日韩高清一区| 亚洲在线成人精品| 99热精品国产| 中文欧美字幕免费| 激情av综合网| 欧美精品一区二区三区在线| 午夜a成v人精品| 欧美色精品在线视频| 一区二区三区精品在线| www.欧美日韩国产在线| 国产精品女主播av| 成人动漫一区二区| 亚洲国产高清在线观看视频| 国产一区二区女| 日本一区二区高清| 成人av网在线| 夜夜精品视频一区二区| 欧美日韩中文国产| 日韩高清一级片| 久久亚洲综合av| 成人性生交大片免费看中文| 亚洲国产精品av| 99精品黄色片免费大全| 国产精品蜜臀av| 欧美日韩国产高清一区二区 | 亚洲狠狠丁香婷婷综合久久久| 国产精品99久久久久久有的能看| 国产亚洲婷婷免费| 一本高清dvd不卡在线观看| 五月天亚洲精品| 久久精品亚洲精品国产欧美| 成人一二三区视频| 免费视频一区二区| 亚洲国产成人私人影院tom| 97精品超碰一区二区三区| 亚洲电影一级片| 日本一区二区三区国色天香 | 亚洲免费成人av| 日韩一二三区不卡| 波多野结衣在线aⅴ中文字幕不卡| 亚洲一区免费在线观看| 亚洲国产高清在线观看视频| 欧美丰满一区二区免费视频| 岛国一区二区在线观看| 视频一区二区欧美| 亚洲综合在线免费观看| 国产欧美一区二区精品婷婷| 欧美一区日本一区韩国一区| 97se亚洲国产综合自在线| 久久99精品国产| 久久精品国产免费看久久精品| 依依成人精品视频| 日韩美女视频19| 日本一区二区视频在线观看| 精品成人一区二区三区四区| 欧美精品123区| 91精品国产一区二区三区蜜臀 | 亚洲三级在线看| 国产欧美日韩另类一区| 精品国产91久久久久久久妲己| 欧美日韩国产经典色站一区二区三区| 成人小视频在线| 97精品国产97久久久久久久久久久久| 成人免费视频免费观看| 久久99精品国产.久久久久| 国产综合久久久久久久久久久久| 久久99精品久久久久久动态图| 免费的成人av| av在线一区二区| 欧美吞精做爰啪啪高潮| 久久精品亚洲一区二区三区浴池| 亚洲黄色av一区| 老色鬼精品视频在线观看播放| 成人免费看视频| 日韩欧美一级精品久久| 亚洲精品成人少妇| 国产精品99久久久久久久vr| 欧美人与z0zoxxxx视频| 最新国产精品久久精品| 国产一区视频在线看| 欧美精品丝袜久久久中文字幕| 成人免费在线观看入口| 成人午夜短视频| 欧美精品一区二区久久婷婷| 青青草国产精品亚洲专区无| 91豆麻精品91久久久久久| 亚洲欧洲在线观看av| av电影在线观看完整版一区二区| 精品日韩一区二区| 久久精品99国产精品| 91精品国模一区二区三区| 麻豆91精品视频| 精品福利在线导航| 成人av影院在线| 国产揄拍国内精品对白| 国产亚洲精品bt天堂精选| 精品一区二区精品| 国产欧美一区二区精品婷婷| 99精品偷自拍| 天堂蜜桃一区二区三区| 2021中文字幕一区亚洲| 成人综合在线视频| 美女一区二区三区在线观看| 国产亚洲精品超碰| 91久久免费观看| 不卡av在线免费观看| 国产精品人成在线观看免费| 欧美伊人久久大香线蕉综合69| 日韩av电影免费观看高清完整版 | 三级不卡在线观看| 日韩欧美一区中文| 成人综合婷婷国产精品久久蜜臀 | 天堂久久久久va久久久久| 日韩三级伦理片妻子的秘密按摩| 国产在线播精品第三| 亚洲自拍偷拍麻豆| 欧美国产日韩在线观看| 久久只精品国产| 欧美唯美清纯偷拍| av在线播放一区二区三区| 日本午夜一区二区| 亚洲欧洲制服丝袜| 久久久国产精品麻豆| 欧美精品在线视频| 欧美天堂一区二区三区| 色综合网站在线| 成人在线综合网| 国产美女在线精品| 美女脱光内衣内裤视频久久影院| 亚洲欧美日韩国产成人精品影院| 久久综合国产精品| 日韩亚洲欧美综合| 欧美日韩国产一二三| 91电影在线观看| 欧美亚一区二区| 在线综合亚洲欧美在线视频| 91精品国产综合久久香蕉麻豆| 777亚洲妇女| 精品国产不卡一区二区三区| 日韩精品最新网址| 久久久久久久久久久久久久久99 | 国产精品18久久久久久vr| 国内精品久久久久影院薰衣草| 秋霞午夜鲁丝一区二区老狼| 免费观看在线综合色| 激情av综合网| 一本一道综合狠狠老| 欧美日韩成人综合| 日韩欧美国产午夜精品| 国产精品嫩草99a| 亚洲综合一区二区精品导航| 午夜精品久久久久久久99樱桃| 青青草国产精品亚洲专区无| 国产乱码精品一区二区三| 色综合中文字幕国产 | 精品播放一区二区| 久久一夜天堂av一区二区三区| 亚洲人成在线播放网站岛国| 亚洲成人av资源| 成人激情免费电影网址| 欧美日本精品一区二区三区| 国产精品免费av| 国产综合久久久久影院| 欧美日韩国产天堂| 日韩码欧中文字| www.一区二区| 久久婷婷综合激情| 免费在线看成人av| 欧美色图天堂网| 亚洲图片你懂的| av福利精品导航| 中文字幕一区在线观看| 国产丶欧美丶日本不卡视频| 欧美二区乱c少妇| 午夜精品视频在线观看| 8x8x8国产精品| 蜜桃传媒麻豆第一区在线观看| 色综合天天综合狠狠| 亚洲欧美日本在线|