当前位置: 首页>>代码示例>>C++>>正文


C++ ProgressBar::setMarquee方法代码示例

本文整理汇总了C++中ProgressBar::setMarquee方法的典型用法代码示例。如果您正苦于以下问题:C++ ProgressBar::setMarquee方法的具体用法?C++ ProgressBar::setMarquee怎么用?C++ ProgressBar::setMarquee使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ProgressBar的用法示例。


在下文中一共展示了ProgressBar::setMarquee方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: MainFrame

  MainFrame()
    : Dialog(L"ProgressBars")
    , m_progressBar1(this)
    , m_progressBar2(this, ProgressBar::Styles::Default +
			   ProgressBar::Styles::Smooth)
    , m_progressBar3(this, ProgressBar::Styles::Default +
			   ProgressBar::Styles::Marquee)
    , m_start(L"Start", this)
    , m_close(L"Close", this)
  {
    // a box layout manager with vertical orientation and no-homogeneous
    setLayout(new BoxLayout(Orientation::Vertical, false));

    // set the ranges of the progress bars
    m_progressBar1.setRange(0, 100);
    m_progressBar2.setRange(0, 100);
    m_progressBar3.setMarquee(0);

    // the "Start" button is the default one
    m_start.setDefault(true);

    // call "onStart" when the "Start" button is pressed
    m_start.Click.connect(Bind(&MainFrame::onStart, this));

    // the Dialog::onCancel generates an onClose event
    m_close.Click.connect(Bind(&MainFrame::onCancel, this));

    // the application is waiting to work (the user should press the
    // "Start" button)
    m_state = WaitingToWork;

    // set the size of the Frame
    setSize(Size(256, getPreferredSize().h));
    center();
  }
开发者ID:Jmos,项目名称:vaca,代码行数:35,代码来源:ProgressBars.cpp

示例2: onStart

  // when the "Start/Pause/Continue/Restart" button is pressed...
  void onStart()
  {
    switch (m_state) {

      // The user pressed Start/Continue...
      case WaitingToWork:
      case Paused: {
	m_state = Working;
	m_start.setText(L"Pause"); // convert the button to "Pause"...
	m_progressBar3.setMarquee(100);

	// this is "The Loop", where the real work is done
	do {
	  // when we pump the message queue, we can get events like onClose()
	  CurrentThread::pumpMessageQueue();

	  // work done
	  if (m_progressBar1.getValue() == m_progressBar1.getMaximum()) {
	    m_state = WorkDone;
	    m_start.setText(L"Restart"); // convert the button to "Restart"
	  }
	  else {
	    m_progressBar1.addValue(1);
	    m_progressBar2.addValue(1);

	    // in our case, the "real work" is sleep :) ...but for
	    // your application this could be "loading a file"...
	    Sleep(100);
	  }

	  // still working?
	} while (m_state == Working);

	// aborting work? hide the frame...
	if (m_state == Aborting)
	  setVisible(false);

	m_progressBar3.setMarquee(0);
	break;
      }

      // The user pressed Pause...
      case Working:
	m_state = Paused;
	m_start.setText(L"Continue"); // convert the button to "Continue"
	break;

      // The user pressed Restart...
      case WorkDone:
	// restart progress bars
	m_progressBar1.setValue(m_progressBar1.getMinimum());
	m_progressBar2.setValue(m_progressBar2.getMinimum());
	m_progressBar3.setMarquee(0);
	m_start.setText(L"Start"); // convert the button to "Start"
	m_state = WaitingToWork;
	break;

      case Aborting:
	assert(false);		// impossible
	break;
    }
  }
开发者ID:Jmos,项目名称:vaca,代码行数:63,代码来源:ProgressBars.cpp


注:本文中的ProgressBar::setMarquee方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。