当前位置: 首页 > news >正文

做全景图二维码的网站怎么做宣传网站

做全景图二维码的网站,怎么做宣传网站,网站运营开发托管,广州市招标采购网官网QT -狗狗管理工具 一、演示效果二、UML三、关键代码四、程序链接 一、演示效果 二、UML 三、关键代码 #include QFrame #include QHBoxLayout #include QVBoxLayout #include QLabel #include QSizePolicy #include QDialog … QT -狗狗管理工具 一、演示效果二、UML三、关键代码四、程序链接 一、演示效果 二、UML 三、关键代码 #include QFrame #include QHBoxLayout #include QVBoxLayout #include QLabel #include QSizePolicy #include QDialog #include QDialogButtonBox#include DogVisitorCard.h #include DogVisitorInfoPanel.h #include Dog/owner.h #include ./view/buttons/ButtonsWidget.h#include breeds/breed.h #include breeds/amstaff.h #include breeds/bulldog.hQVBoxLayout* DogVisitorCard::getCard() const{return cardLayout; }void DogVisitorCard::visitBoarding(Boarding boarding) {QHBoxLayout* hboxnew QHBoxLayout();dogboarding;hbox-addSpacing(30);//left imageQHBoxLayout* img new QHBoxLayout();QLabel* image new QLabel();image-setPixmap(QPixmap(:/assets/icons8-dog-house-64.png));image-setAlignment(Qt::AlignLeft|Qt::AlignVCenter);img-addWidget(image);hbox-addLayout(img);hbox-addSpacing(25);//Dogs infoQVBoxLayout* info new QVBoxLayout();hbox-addLayout(info);info-setAlignment(Qt::AlignCenter);//nameQLabel* name new QLabel(Name: QString::fromStdString(boarding.getName()));info-addWidget(name);//dateQLabel* date new QLabel(Arrival date: QString::fromStdString(boarding.getDate().toString()));info-addWidget(date);//OwnerOwner* ownerboarding.getOwner();std::string OwnerNameowner-getName();std::string OwnerSurnameowner-getSurname();QLabel* ownerString new QLabel(Owner: QString::fromStdString(OwnerName OwnerSurname));info-addWidget(ownerString);//Optional servicesQLabel* optionalService new QLabel(Optional services: );info-addWidget(optionalService);QHBoxLayout* srvc new QHBoxLayout();info-addLayout(srvc);//BathQLabel* bath new QLabel();QLabel* bathString new QLabel(Bath);bath-setAlignment(Qt::AlignRight|Qt::AlignCenter);if (boarding.didBath())bath-setPixmap(QPixmap(:/assets/icons8-done-48.png).scaled(10,10,Qt::KeepAspectRatio));elsebath-setPixmap(QPixmap(:/assets/icons8-close-48.png).scaled(10,10,Qt::KeepAspectRatio));srvc-addWidget(bath);srvc-addWidget(bathString);//DietQLabel* diet new QLabel();QLabel* dietString new QLabel(Diet);diet-setAlignment(Qt::AlignRight|Qt::AlignCenter);if (boarding.didDiet())diet-setPixmap(QPixmap(:/assets/icons8-done-48.png).scaled(10,10,Qt::KeepAspectRatio));elsediet-setPixmap(QPixmap(:/assets/icons8-close-48.png).scaled(10,10,Qt::KeepAspectRatio));srvc-addWidget(diet);srvc-addWidget(dietString);//TrainingsQLabel* trainings new QLabel();QLabel* trainString new QLabel(Trainings);trainings-setAlignment(Qt::AlignRight|Qt::AlignCenter);if (boarding.didTraining())trainings-setPixmap(QPixmap(:/assets/icons8-done-48.png).scaled(10,10,Qt::KeepAspectRatio));elsetrainings-setPixmap(QPixmap(:/assets/icons8-close-48.png).scaled(10,10,Qt::KeepAspectRatio));srvc-addWidget(trainings);srvc-addWidget(trainString);//WalksQLabel* walks new QLabel();QLabel* walksString new QLabel(Walks);walks-setAlignment(Qt::AlignRight|Qt::AlignCenter);if (boarding.didWalking())walks-setPixmap(QPixmap(:/assets/icons8-done-48.png).scaled(10,10,Qt::KeepAspectRatio));elsewalks-setPixmap(QPixmap(:/assets/icons8-close-48.png).scaled(10,10,Qt::KeepAspectRatio));srvc-addWidget(walks);srvc-addWidget(walksString);hbox-addStretch();hbox-addStretch();hbox-addSpacing(25);//put all things toghetercardLayout new QVBoxLayout();cardLayout-addLayout(hbox);}void DogVisitorCard::visitBreeding(Breeding breeding) {QHBoxLayout* hboxnew QHBoxLayout();hbox-addSpacing(30);dogbreeding;//left imageQHBoxLayout* img new QHBoxLayout();QLabel* image new QLabel();Breed* bulldogPointerbreeding.getBreed();if(dynamic_castBulldog*(bulldogPointer))image-setPixmap(QPixmap(:/assets/icons8-french-bulldog-64.png));elseimage-setPixmap(QPixmap(:/assets/icons8-dog-64.png));image-setAlignment(Qt::AlignLeft|Qt::AlignVCenter);img-addWidget(image);hbox-addLayout(img);hbox-addSpacing(25);//Dogs infoQVBoxLayout* info new QVBoxLayout();hbox-addLayout(info);info-setAlignment(Qt::AlignCenter|Qt::AlignVCenter);//nameQLabel* name new QLabel(Name: QString::fromStdString(breeding.getName()));info-addWidget(name);//dateQLabel* date new QLabel(Day of birth: QString::fromStdString(breeding.getDate().toString()));info-addWidget(date);//BreedQLabel* breed new QLabel(Breed: QString::fromStdString(breeding.getBreed()-toString()));info-addWidget(breed);//Optional servicesQLabel* options new QLabel(Options: );info-addWidget(options);QHBoxLayout* opt new QHBoxLayout();info-addLayout(opt);//VaxQLabel* vax new QLabel();QLabel* vaxString new QLabel(Vaxxed);vax-setAlignment(Qt::AlignRight|Qt::AlignCenter);if (breeding.isVax())vax-setPixmap(QPixmap(:/assets/icons8-done-48.png).scaled(10,10,Qt::KeepAspectRatio));elsevax-setPixmap(QPixmap(:/assets/icons8-close-48.png).scaled(10,10,Qt::KeepAspectRatio));opt-addWidget(vax);opt-addWidget(vaxString);//PurchasableQLabel* purch new QLabel();QLabel* purchString new QLabel(Purchasable);purch-setAlignment(Qt::AlignRight|Qt::AlignCenter);if (breeding.isPurchasable())purch-setPixmap(QPixmap(:/assets/icons8-done-48.png).scaled(10,10,Qt::KeepAspectRatio));elsepurch-setPixmap(QPixmap(:/assets/icons8-close-48.png).scaled(10,10,Qt::KeepAspectRatio));opt-addWidget(purch);opt-addWidget(purchString);//BookedQLabel* booked new QLabel();QLabel* bookedString new QLabel(Booked);booked-setAlignment(Qt::AlignRight|Qt::AlignCenter);if (breeding.isBooked())booked-setPixmap(QPixmap(:/assets/icons8-done-48.png).scaled(10,10,Qt::KeepAspectRatio));elsebooked-setPixmap(QPixmap(:/assets/icons8-close-48.png).scaled(10,10,Qt::KeepAspectRatio));opt-addWidget(booked);opt-addWidget(bookedString);hbox-addStretch();hbox-addStretch();hbox-addSpacing(25);//put all things toghetercardLayout new QVBoxLayout();cardLayout-addLayout(hbox);} 四、程序链接 https://download.csdn.net/download/u013083044/88739503
http://www.pierceye.com/news/9780/

相关文章:

  • 奇趣网做网站中国字体设计网
  • 西宁个人网站建设电商营销方式有哪些
  • 网站右下角代码网站制作公司 哪家好
  • 做流程图用什么网站如何在建设银行网站查验回单
  • wordpress网站弹窗插件原神个人网页设计
  • 四川淘宝网站建设方案seo引擎搜索网址
  • 营销型网站建设策划书中文域名注册服务网站
  • 哪些网站做任务好赚钱的网站广告设计
  • 网站被k 申诉什么网站做啤酒
  • 自己做配图的网站嘉兴市网站建设
  • 班级网站建设规划书360安全网址
  • 网站建设英文参考文献无锡网站建设seo
  • 安阳市建设工程领域网站logo注册商标流程
  • 福建建设人才市场官方网站怎样创建一个网站
  • 网站 谁建设谁负责wordpress更换域名批量替换
  • 网站运营策划是什么wordpress媒体库一直转圈
  • 建站公司合同模板wordpress读者墙 插件
  • 做网站教程pdfdedecms仿站
  • 怎么做同学录的网站公司起名字大全免费3个字
  • 网站开发都有wordpress弹出搜索
  • 需要做网站建设的行业有哪些怎么搭建个人网站
  • 重庆主城优化网站建设徐州网站制作方法
  • 专业集团门户网站建设方案wordpress文章管理模板下载
  • 网站维护 html余姚做网站首荐荣盛网络
  • 网站建设需要的职位熟练掌握网站开发技术
  • 有什么做分销的几个网站诸暨网络推广
  • 网站备案ip电话外呼系统怎么收费
  • 网站建设和管理的总结怎么写泰州专业做网站公司
  • 深圳通信管理局网站快速搭建外贸网站
  • 网站开发 数据库我的网站模板