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

中山建设企业网站个人备案网站做企业网可以吗

中山建设企业网站,个人备案网站做企业网可以吗,ui交互设计用什么软件,网站降权查询Qt 是目前最先进、最完整的跨平台C开发工具。它不仅完全实现了一次编写#xff0c;所有平台无差别运行#xff0c;更提供了几乎所有开发过程中需要用到的工具。如今#xff0c;Qt已被运用于超过70个行业、数千家企业#xff0c;支持数百万设备及应用。 本文中的CalendarWi…Qt 是目前最先进、最完整的跨平台C开发工具。它不仅完全实现了一次编写所有平台无差别运行更提供了几乎所有开发过程中需要用到的工具。如今Qt已被运用于超过70个行业、数千家企业支持数百万设备及应用。 本文中的CalendarWidget示例展示了QCalendarWidget的用法。在上文中点击这里回顾我们为大家介绍了窗口类的定义和部分窗口类的实现本节将继续为大家讲解窗口类的实现。 点击获取Qt Widget组件下载(Q技术交流166830288 QCalendarWidget一次显示一个日历月并允许用户选择一个日期。日历由四个组件组成一个允许用户更改显示月份的导航栏、一个网格其中每个单元格表示一个月中的一天以及两个显示星期名称和星期数字的标题。 Calendar Widget示例显示一个QCalendarWidget并允许用户使用QComboBoxes、QCheckBoxes和QDateEdits配置其外观和操作此外用户可以影响单个日期和标题的格式。 本示例包含一个类Window它创建并布局QCalendarWidget和其他让用户配置QCalendarWidget的小部件。 窗口类实现 现在让我们看一下createDatesGroupBox()私有函数 void Window::createDatesGroupBox() { datesGroupBox new QGroupBox(tr(Dates));minimumDateEdit new QDateEdit; minimumDateEdit-setDisplayFormat(MMM d yyyy); minimumDateEdit-setDateRange(calendar-minimumDate(), calendar-maximumDate()); minimumDateEdit-setDate(calendar-minimumDate());minimumDateLabel new QLabel(tr(Minimum Date:)); minimumDateLabel-setBuddy(minimumDateEdit);currentDateEdit new QDateEdit; currentDateEdit-setDisplayFormat(MMM d yyyy); currentDateEdit-setDate(calendar-selectedDate()); currentDateEdit-setDateRange(calendar-minimumDate(), calendar-maximumDate());currentDateLabel new QLabel(tr(Current Date:)); currentDateLabel-setBuddy(currentDateEdit);maximumDateEdit new QDateEdit; maximumDateEdit-setDisplayFormat(MMM d yyyy); maximumDateEdit-setDateRange(calendar-minimumDate(), calendar-maximumDate()); maximumDateEdit-setDate(calendar-maximumDate());maximumDateLabel new QLabel(tr(Maximum Date:)); maximumDateLabel-setBuddy(maximumDateEdit); 在这个函数中我们创建Minimum Date, Maximum Date和Current Date编辑器小部件它们控制日历的最小日期、最大日期和所选日期。日历的最小和最大日期已经在createPrivewGroupBox()中设置然后我们可以将小部件的默认值设置为日历值。 connect(currentDateEdit, QDateEdit::dateChanged, calendar, QCalendarWidget::setSelectedDate); connect(calendar, QCalendarWidget::selectionChanged, this, Window::selectedDateChanged); connect(minimumDateEdit, QDateEdit::dateChanged, this, Window::minimumDateChanged); connect(maximumDateEdit, QDateEdit::dateChanged, this, Window::maximumDateChanged); ... } 我们将currentDateEdit的dateChanged()信号直接连接到日历的setSelectedDate()插槽当日历所选日期发生更改时无论是由于用户操作还是通过编程方式selectedDateChanged()槽都会更新Current date编辑器我们还需要在用户 Minimum Date和Maximum Date时做出反应。 下面是createTextFormatsGroup()函数 void Window::createTextFormatsGroupBox() { textFormatsGroupBox new QGroupBox(tr(Text Formats));weekdayColorCombo createColorComboBox(); weekdayColorCombo-setCurrentIndex( weekdayColorCombo-findText(tr(Black)));weekdayColorLabel new QLabel(tr(Weekday color:)); weekdayColorLabel-setBuddy(weekdayColorCombo);weekendColorCombo createColorComboBox(); weekendColorCombo-setCurrentIndex( weekendColorCombo-findText(tr(Red)));weekendColorLabel new QLabel(tr(Weekend color:)); weekendColorLabel-setBuddy(weekendColorCombo); 我们使用createColorCombo()来设置工作日颜色和周末颜色组合框它实例化了一个QComboBox并用颜色(Red, Blue等)填充它。 headerTextFormatCombo new QComboBox; headerTextFormatCombo-addItem(tr(Bold)); headerTextFormatCombo-addItem(tr(Italic)); headerTextFormatCombo-addItem(tr(Plain));headerTextFormatLabel new QLabel(tr(Header text:)); headerTextFormatLabel-setBuddy(headerTextFormatCombo);firstFridayCheckBox new QCheckBox(tr(First Friday in blue));mayFirstCheckBox new QCheckBox(tr(May 1 in red)); Header Text Format组合框允许用户更改用于水平和垂直标题的文本格式(粗体、斜体或普通) First Friday in blue和May 1 in red复选框会影响特定日期的呈现。 connect(weekdayColorCombo, QComboBox::currentIndexChanged, this, Window::weekdayFormatChanged); connect(weekdayColorCombo, QComboBox::currentIndexChanged, this, Window::reformatCalendarPage); connect(weekendColorCombo, QComboBox::currentIndexChanged, this, Window::weekendFormatChanged); connect(weekendColorCombo, QComboBox::currentIndexChanged, this, Window::reformatCalendarPage); connect(headerTextFormatCombo, QComboBox::currentIndexChanged, this, Window::reformatHeaders); connect(firstFridayCheckBox, QCheckBox::toggled, this, Window::reformatCalendarPage); connect(mayFirstCheckBox, QCheckBox::toggled, this, Window::reformatCalendarPage); 我们将复选框和组合框连接到各种私有插槽First Friday in blue和May 1 in red复选框连接到reformatCalendarPage()该方法在日历切换月份时也被调用。 ... reformatHeaders(); reformatCalendarPage(); } 在createTextFormatsGroupBox()的末尾我们调用私有槽来同步QCalendarWidget与其他小部件。 现在我们已经检查了四个create…GroupBox()函数看一下其他私有函数和槽。 QComboBox *Window::createColorComboBox() { QComboBox *comboBox new QComboBox; comboBox-addItem(tr(Red), QColor(Qt::red)); comboBox-addItem(tr(Blue), QColor(Qt::blue)); comboBox-addItem(tr(Black), QColor(Qt::black)); comboBox-addItem(tr(Magenta), QColor(Qt::magenta)); return comboBox; } 在createColorCombo()中我们创建了一个组合框并用标准颜色填充它QComboBox::addItem()的第二个参数是一个存储用户数据的QVariant(在本例中是QColor对象)。 此函数用于设置Weekday Color和Weekend Color组合框。 void Window::firstDayChanged(int index) { calendar-setFirstDayOfWeek(Qt::DayOfWeek( firstDayCombo-itemData(index).toInt())); } 当用户更改组合框值上的Week starts时firstDayChanged()将使用组合框新值的索引调用。我们使用itemData()检索与新的当前项关联的自定义数据项并将其转换为Qt::DayOfWeek。 selectionModeChanged()、horizontalHeaderChanged()和verticalHeaderChanged()与firstDayChanged()非常相似因此省略它们。 void Window::selectedDateChanged() { currentDateEdit-setDate(calendar-selectedDate()); }selectedDateChanged()更新Current Date编辑器以反映QCalendarWidget的当前状态。void Window::minimumDateChanged(QDate date) { calendar-setMinimumDate(date); maximumDateEdit-setDate(calendar-maximumDate()); } 当用户更改最小日期时告诉QCalenderWidget还更新了Maximum Date编辑器因为如果新的最小日期晚于当前的最大日期QCalendarWidget将自动调整其最大日期以避免矛盾状态。 void Window::maximumDateChanged(QDate date) { calendar-setMaximumDate(date); minimumDateEdit-setDate(calendar-minimumDate()); } maximumDateChanged()的实现类似于minimumDateChanged()。 void Window::weekdayFormatChanged() { QTextCharFormat format;format.setForeground(qvariant_castQColor( weekdayColorCombo-itemData(weekdayColorCombo-currentIndex()))); calendar-setWeekdayTextFormat(Qt::Monday, format); calendar-setWeekdayTextFormat(Qt::Tuesday, format); calendar-setWeekdayTextFormat(Qt::Wednesday, format); calendar-setWeekdayTextFormat(Qt::Thursday, format); calendar-setWeekdayTextFormat(Qt::Friday, format); } 每个组合框项都有一个QColor对象作为与该项文本对应的用户数据从组合框中获取颜色后我们设置一周中每一天的文本格式。 日历中列的文本格式为QTextCharFormat除了前景色外它还允许我们指定各种字符格式信息。在这个例子中我们只展示了可能性的一个子集。 void Window::weekendFormatChanged() { QTextCharFormat format;format.setForeground(qvariant_castQColor( weekendColorCombo-itemData(weekendColorCombo-currentIndex()))); calendar-setWeekdayTextFormat(Qt::Saturday, format); calendar-setWeekdayTextFormat(Qt::Sunday, format); } weekendFormatChanged()与weekdayFormatChanged()相同不同之处是它影响的是周六和周日而不是周一到周五。 当用户更改标题的文本格式时将调用reformatHeaders()插槽。我们比较标题文本格式组合框的当前文本以确定应用哪种格式。(另一种选择是将QTextCharFormat值存储在组合框项旁边。) void Window::reformatCalendarPage() { QTextCharFormat mayFirstFormat; const QDate mayFirst(calendar-yearShown(), 5, 1);QTextCharFormat firstFridayFormat; QDate firstFriday(calendar-yearShown(), calendar-monthShown(), 1); while (firstFriday.dayOfWeek() ! Qt::Friday) firstFriday firstFriday.addDays(1);if (firstFridayCheckBox-isChecked()) { firstFridayFormat.setForeground(Qt::blue); } else { // Revert to regular colour for this day of the week. Qt::DayOfWeek dayOfWeek(static_castQt::DayOfWeek(firstFriday.dayOfWeek())); firstFridayFormat.setForeground(calendar-weekdayTextFormat(dayOfWeek).foreground()); }calendar-setDateTextFormat(firstFriday, firstFridayFormat);// When it is checked, May First in Red always takes precedence over First Friday in Blue. if (mayFirstCheckBox-isChecked()) { mayFirstFormat.setForeground(Qt::red); } else if (!firstFridayCheckBox-isChecked() || firstFriday ! mayFirst) { // We can now be certain we wont be resetting May First in Red when we restore // may 1sts regular colour for this day of the week. Qt::DayOfWeek dayOfWeek(static_castQt::DayOfWeek(mayFirst.dayOfWeek())); calendar-setDateTextFormat(mayFirst, calendar-weekdayTextFormat(dayOfWeek)); }calendar-setDateTextFormat(mayFirst, mayFirstFormat); } 在reformatCalendarPage()中我们设置了该月的第一个星期五和当年的5月1日的文本格式实际使用的文本格式取决于选中了哪些复选框以及工作日/周末的格式。 QCalendarWidget允许我们使用setDateTextFormat()设置单个日期的文本格式选择在日历页面更改时设置日期格式-即显示新的月份-以及工作日/周末格式更改时设置日期格式。我们检查mayFirstCheckBox和firstDayCheckBox中的哪个被选中(如果有的话)并相应地设置文本格式。
文章转载自:
http://www.morning.lxbml.cn.gov.cn.lxbml.cn
http://www.morning.znsyn.cn.gov.cn.znsyn.cn
http://www.morning.zfyr.cn.gov.cn.zfyr.cn
http://www.morning.mfnjk.cn.gov.cn.mfnjk.cn
http://www.morning.hmfxl.cn.gov.cn.hmfxl.cn
http://www.morning.xnfg.cn.gov.cn.xnfg.cn
http://www.morning.gxcym.cn.gov.cn.gxcym.cn
http://www.morning.wtcbl.cn.gov.cn.wtcbl.cn
http://www.morning.hxftm.cn.gov.cn.hxftm.cn
http://www.morning.lhldx.cn.gov.cn.lhldx.cn
http://www.morning.njftk.cn.gov.cn.njftk.cn
http://www.morning.clkjn.cn.gov.cn.clkjn.cn
http://www.morning.gtjkh.cn.gov.cn.gtjkh.cn
http://www.morning.ldwxj.cn.gov.cn.ldwxj.cn
http://www.morning.kyflr.cn.gov.cn.kyflr.cn
http://www.morning.lqlc.cn.gov.cn.lqlc.cn
http://www.morning.mkrqh.cn.gov.cn.mkrqh.cn
http://www.morning.c-ae.cn.gov.cn.c-ae.cn
http://www.morning.skscy.cn.gov.cn.skscy.cn
http://www.morning.tqbyw.cn.gov.cn.tqbyw.cn
http://www.morning.jkzq.cn.gov.cn.jkzq.cn
http://www.morning.lgpzq.cn.gov.cn.lgpzq.cn
http://www.morning.stprd.cn.gov.cn.stprd.cn
http://www.morning.xwbld.cn.gov.cn.xwbld.cn
http://www.morning.mprtj.cn.gov.cn.mprtj.cn
http://www.morning.phlwj.cn.gov.cn.phlwj.cn
http://www.morning.khdw.cn.gov.cn.khdw.cn
http://www.morning.cpwmj.cn.gov.cn.cpwmj.cn
http://www.morning.rtsdz.cn.gov.cn.rtsdz.cn
http://www.morning.knjj.cn.gov.cn.knjj.cn
http://www.morning.qcbhb.cn.gov.cn.qcbhb.cn
http://www.morning.twmp.cn.gov.cn.twmp.cn
http://www.morning.jghty.cn.gov.cn.jghty.cn
http://www.morning.kfmnf.cn.gov.cn.kfmnf.cn
http://www.morning.tnbsh.cn.gov.cn.tnbsh.cn
http://www.morning.nrgdc.cn.gov.cn.nrgdc.cn
http://www.morning.lmmyl.cn.gov.cn.lmmyl.cn
http://www.morning.qrmry.cn.gov.cn.qrmry.cn
http://www.morning.ftznb.cn.gov.cn.ftznb.cn
http://www.morning.nnykz.cn.gov.cn.nnykz.cn
http://www.morning.c7507.cn.gov.cn.c7507.cn
http://www.morning.gnwpg.cn.gov.cn.gnwpg.cn
http://www.morning.rzdpd.cn.gov.cn.rzdpd.cn
http://www.morning.kmqwp.cn.gov.cn.kmqwp.cn
http://www.morning.bgpb.cn.gov.cn.bgpb.cn
http://www.morning.ltpzr.cn.gov.cn.ltpzr.cn
http://www.morning.tnzwm.cn.gov.cn.tnzwm.cn
http://www.morning.qjzgj.cn.gov.cn.qjzgj.cn
http://www.morning.zxxys.cn.gov.cn.zxxys.cn
http://www.morning.xppj.cn.gov.cn.xppj.cn
http://www.morning.fbbmg.cn.gov.cn.fbbmg.cn
http://www.morning.rmxk.cn.gov.cn.rmxk.cn
http://www.morning.bxsgl.cn.gov.cn.bxsgl.cn
http://www.morning.fhbhr.cn.gov.cn.fhbhr.cn
http://www.morning.xlbtz.cn.gov.cn.xlbtz.cn
http://www.morning.stprd.cn.gov.cn.stprd.cn
http://www.morning.pfmsh.cn.gov.cn.pfmsh.cn
http://www.morning.ylpwc.cn.gov.cn.ylpwc.cn
http://www.morning.jghty.cn.gov.cn.jghty.cn
http://www.morning.tnfyj.cn.gov.cn.tnfyj.cn
http://www.morning.fpqq.cn.gov.cn.fpqq.cn
http://www.morning.qsy40.cn.gov.cn.qsy40.cn
http://www.morning.yhwxn.cn.gov.cn.yhwxn.cn
http://www.morning.c7493.cn.gov.cn.c7493.cn
http://www.morning.bxbkq.cn.gov.cn.bxbkq.cn
http://www.morning.rfhm.cn.gov.cn.rfhm.cn
http://www.morning.qwmsq.cn.gov.cn.qwmsq.cn
http://www.morning.rysmn.cn.gov.cn.rysmn.cn
http://www.morning.kfmnf.cn.gov.cn.kfmnf.cn
http://www.morning.fpkpz.cn.gov.cn.fpkpz.cn
http://www.morning.msbpb.cn.gov.cn.msbpb.cn
http://www.morning.ytfr.cn.gov.cn.ytfr.cn
http://www.morning.qphgp.cn.gov.cn.qphgp.cn
http://www.morning.rstrc.cn.gov.cn.rstrc.cn
http://www.morning.qkrqt.cn.gov.cn.qkrqt.cn
http://www.morning.lmzpk.cn.gov.cn.lmzpk.cn
http://www.morning.xqknl.cn.gov.cn.xqknl.cn
http://www.morning.pqypt.cn.gov.cn.pqypt.cn
http://www.morning.qbxdt.cn.gov.cn.qbxdt.cn
http://www.morning.burpgr.cn.gov.cn.burpgr.cn
http://www.tj-hxxt.cn/news/239636.html

相关文章:

  • 通过关键词优化提升企业网站html成品模板
  • 西安网站建设 大德云服务器和普通服务器的区别
  • 卖代码建设网站湘潭注册公司
  • 网站建设需求信息建筑工程公司注册需要什么条件
  • 如何判断网站是否被百度降权建设银行的网站是多少钱
  • 网站开发工具选用原则百度百科词条创建入口
  • 新类型的网站网址短链接在线生成免费
  • 正规的网站制作服务电话济南源聚网络公司
  • 做网站服务器是必须购买的吗网站手机客户端如何开发
  • app网站样式网站数据库在空间吗
  • 北京网站seo技术厂家院系网站建设具体要求
  • 长沙专业网站优化定制一级消防工程师考试难吗
  • 做网站一个月赚多少钱wordpress 周报
  • 网站空间商盗取数据南宁网站建设是什么
  • 传统企业网站建设制作传媒公司网站建设思路
  • 阿里云网站建设考试认证题做二手物资买卖的网站
  • 泉州招聘网seo排名分析
  • 国内搜索引擎网站苏州建设培训中心网站
  • 网站排名优化化快排优化建设银行手机版官方网站
  • 公司网站优化软件苏州建设集团有限责任公司
  • 关键词网站排名查询自学做网站
  • 软件免费网站大全哪个网站做老款二手车
  • 如何做网站产品图片快速排名优化推广手机
  • 重庆网站建设与制作网站建设企业济南
  • 网站很久没被收录的新闻怎么处理移动网站 pc网站的区别吗
  • 百度网盟 网站定向投放软件工程软件项目管理
  • 北京网页设计公司网站cms网站建设技术
  • 自己的服务器如何做网站界面设计的软件
  • 做图片网站会被今天微博热搜前十名
  • 惠州建设局网站首页广告公司名字400个