📄 kseparator.cpp
字号:
/* * Copyright (C) 1997 Michael Roth <mroth@wirlweb.de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */#include "kseparator.h"KSeparator::KSeparator(QWidget* parent, const char* name, WFlags f) : QFrame(parent, name, f){ this->setLineWidth(1); this->setMidLineWidth(0); setOrientation( HLine );}KSeparator::KSeparator(int orientation, QWidget* parent, const char* name, WFlags f) : QFrame(parent, name, f){ setLineWidth(1); setMidLineWidth(0); setOrientation( orientation );}void KSeparator::setOrientation(int orientation){ switch(orientation) { case VLine: setFrameStyle( QFrame::VLine | QFrame::Sunken ); setMinimumSize(2, 0); break; default: warning("KSeparator::setOrientation(): invalid orientation, using default orientation HLine"); case HLine: setFrameStyle( QFrame::HLine | QFrame::Sunken ); setMinimumSize(0, 2); break; }}int KSeparator::orientation() const{ if ( frameStyle() & VLine ) return VLine; if ( frameStyle() & HLine ) return HLine; return 0;}QSize KSeparator::sizeHint() const{ if ( frameStyle() & VLine ) return QSize(2, 0); if ( frameStyle() & HLine ) return QSize(0, 2); return QSize(-1, -1);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -