vlayout.hpp
来自「一个gps小工具包」· HPP 代码 · 共 80 行
HPP
80 行
/// @file VLayout.hpp Class to lay out graphic elements vertially (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_VLAYOUT_H#define VPLOT_VLAYOUT_H#include <vector>#include "GraphicsConstants.hpp"#include "Frame.hpp"#include "Layout.hpp"namespace vplot{ /** \addtogroup BasicVectorGraphics */ //@{ /** * Assists in arranging frames in a vertical stack. */ class VLayout : public Layout { public: /** * Constructor. * @param frame Frame to create layout within * @param nframes Number of evenly stacked vertical frames to make */ VLayout(const Frame& frame, int nframes); /** * Constructor. * @param frame Frame to split into two * @param fraction Fraction (>0, <1) of the vertical space for the first frame. */ VLayout(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 + -
显示快捷键?