goldendict-ng/src/ui/searchpanewidget.hh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
552 B
C++
Raw Normal View History

2012-02-20 21:47:14 +00:00
/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
2009-04-20 19:31:39 +00:00
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
2024-11-07 03:53:04 +00:00
#pragma once
#include <QWidget>
#include <QSize>
/// A widget holding the contents of the 'Search pane' docklet.
class SearchPaneWidget: public QWidget
{
public:
SearchPaneWidget( QWidget * parent = nullptr ):
QWidget( parent )
{
setSizePolicy( QSizePolicy::Policy::Preferred, QSizePolicy::Policy::Expanding );
}
virtual QSize sizeHint() const
{
return QSize( 10, 204 );
}
};