hlayout.hpp

来自「一个gps小工具包」· HPP 代码 · 共 80 行

HPP
80
字号
/// @file HLayout.hpp Class to lay out graphic elements horizontally (declarations).//============================================================================////  This file is part of GPSTk, the GPS Toolkit.////  The GPSTk is free software; you can redistribute it and/or modify//  it under the terms of the GNU Lesser General Public License as published//  by the Free Software Foundation; either version 2.1 of the License, or//  any later version.////  The GPSTk is distributed in the hope that it will be useful,//  but WITHOUT ANY WARRANTY; without even the implied warranty of//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the//  GNU Lesser General Public License for more details.////  You should have received a copy of the GNU Lesser General Public//  License along with GPSTk; if not, write to the Free Software Foundation,//  Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA//  //  Copyright 2004, The University of Texas at Austin////============================================================================#ifndef VPLOT_HLAYOUT_H#define VPLOT_HLAYOUT_H#include <vector>#include "GraphicsConstants.hpp"#include "Frame.hpp"#include "Layout.hpp"namespace vplot{  /** \addtogroup BasicVectorGraphics */   //@{  /**   * Assists in arranging frames in a horizontal stack.   */  class HLayout : public Layout  {    public:      /**       * Constructor.        * @param frame Frame to create layout within       * @param nframes Number of evenly stacked horizontal frames to make       */         HLayout(const Frame& frame, int nframes);      /**       * Constructor.        * @param frame Frame to split into two       * @param fraction Fraction (>0, <1) of the horizontal space for the first frame.       */      HLayout(const Frame& frame, double fraction);      virtual int getFrameCount(void)      {return targetList.size();}      virtual Frame getFrame(int fnum)      {return targetList[fnum];}    protected:      /// List containing the frames created in this layout.            std::vector<Frame> targetList;  };  //@}} // namespace vplot#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?