Alt linux Программирование на языке С++ в среде Qt Creator Е. Р. Алексеев, Г. Г. Злобин, Д. А. Костюк, О. В. Чеснокова, А. С. Чмыхало Москва alt linux 2015



Download 5,27 Mb.
Pdf ko'rish
bet172/193
Sana24.02.2022
Hajmi5,27 Mb.
#227496
1   ...   168   169   170   171   172   173   174   175   ...   193
Bog'liq
Book-qtC


Глава 14. Создание элементов графического интерфейса
#i f n d e f QRCLEARABLELINEEDIT_H
#define QRCLEARABLELINEEDIT_H
#include 
c l a s s QLabel ;
c l a s s I c o n i z e d L i n e E d i t : public QLineEdit
{
Q_OBJECT
public :
//Режимы отображения пиктограммы, которые определяют её поведение
enum I c o n V i s i b i l i t y M o d e {
//Всегда отображать пиктограмму
I c o n A l w a y s V i s i b l e =0 ,
//Отображать пиктограмму после наведения курсора на поле ввода
I c o n V i s i b l e O n H o v e r ,
//Отображать пиктограмму при присутствии текста
I c o n V i s i b l e O n T e x t P r e s e n c e ,
//Отображать пиктограмму при отсутствии текста
IconVisibleOnEmptyText ,
//Всегда прятать пиктограмму
IconAlwaysHidden
} ;
e x p l i c i t I c o n i z e d L i n e E d i t ( QWidget ∗ p a r e n t = 0 ) ;
bool i s I c o n V i s i b l e ( ) const ;
void s e t I c o n P i x m a p ( const QPixmap &pPixmap ) ;
void s e t I c o n T o o l t i p ( const QStri ng &pToolTip ) ;
private :
void u p d a t e I c o n P o s i t i o n A n d S i z e ( ) ;
private :
QLabel ∗ mIconLabel ; //Указатель на метку, которая отображает пиктограмму
} ;
#endif // QRCLEARABLELINEEDIT_H
В конструкторе класса создадим метку mIconLabel с помощью которой мы
будем отображать значок. Также добавим реализацию для нескольких вспомо-
гательных методов.
#include " i c o n i z e d l i n e e d i t . h "
#include 
#include 
//Конструктор класса
I c o n i z e d L i n e E d i t : : I c o n i z e d L i n e E d i t ( QWidget ∗ p a r e n t ) : QLineEdit ( p a r e n t )
{
mIconLabel = new QLabel ( t h i s ) ; //Создаём метку для того, чтобы показать пиктограмму
}
//Возвращает true, если пиктограмма видима
bool I c o n i z e d L i n e E d i t : : i s I c o n V i s i b l e ( ) const
{
return mIconLabel
−>i s V i s i b l e ( ) ;
}
//Устанавливает пиктограмму
void I c o n i z e d L i n e E d i t : : s e t I c o n P i x m a p ( const QPixmap &pPixmap )
{
//Устанавливаем пиктограмму для метки
mIconLabel−>setPixmap ( pPixmap ) ;
//Обновляем позицию и размеры
u p d a t e I c o n P o s i t i o n A n d S i z e ( ) ;
}
//Устанавливаем подсказку для пиктограммы
void I c o n i z e d L i n e E d i t : : s e t I c o n T o o l t i p ( const QStri ng &pToolTip )
{
//Подсказка будет видимой после наведения курсора на метку с пиктограммой
mIconLabel−>s e t T o o l T i p ( pToolTip ) ;
}
void I c o n i z e d L i n e E d i t : : u p d a t e I c o n P o s i t i o n A n d S i z e ( )
{
Программирование на языке С++ в среде Qt Creator


14.1. Класс QObject
377
//Обновить размер пиктограммы
mIconLabel−>s e t S c a l e d C o n t e n t s ( true ) ;
mIconLabel−>s e t F i x e d S i z e ( h e i g h t ( ) , h e i g h t ( ) ) ;
//Обновить размещение пиктограммы
QSize l S i z e = mIconLabel−>s i z e ( ) ;
mIconLabel−>move ( r e c t ( ) . r i g h t ( ) − l S i z e . width ( ) , ( r e c t ( ) . bottom ( ) + 1 −
l S i z e . h e i g h t ( ) ) / 2 ) ;
//Изменить отступы текста внутри поля ввода в зависимости от видимости
i f ( mIconLabel
−>i s V i s i b l e ( ) )
{
//Добавить отступ справа чтобы текст не накладывался на пиктограмму
QMargins l M a r g i n s = t e x t M a r g i n s ( ) ;
l M a r g i n s . s e t R i g h t ( mIconLabel−>s i z e ( ) . width ( ) + 1 ) ;
s e t T e x t M a r g i n s ( l M a r g i n s ) ;
}
e l s e
{
//Убрать отступы
s e t T e x t M a r g i n s ( QMargins ( 0 , 0 , 0 , 0 ) ) ;
}
}
Чтобы показать значок, мы используем метку, изображения для которой мож-
но передать с помощью метода setPixmap(). Этот метод принимает экземпляр
QPixmap
класса для работы с растровыми изображениями.
Метод updateIconPositionAndSize() обновляет размер и размещение для
метки. Для того, чтобы растянуть\сжать изображения мы передаём true методу
метки setScaledContents(). Это позволяет игнорировать размеры изображения
и изменить размер для значков. Далее мы устанавливаем фиксированный размер
для метки, таким образом, чтобы её пропорции подходили для размещения в
поле. Затем размещаем метку в правом конце текстового поля.
Для того, чтобы установить тот или иной режим отображения значка запро-
граммируем метод setIconVisibility(). Добавим объявление метода в файл
описания, а также добавим описание перечисления IconVisibilityMode, содер-
жащее режимы отображения пиктограммы.
public :
//Режимы отображения пиктограммы, которые определяют её поведение
enum I c o n V i s i b i l i t y M o d e
{
//Всегда отображать пиктограмму
I c o n A l w a y s V i s i b l e =0 ,
//Отображать пиктограмму после наведения на поле ввода
I c o n V i s i b l e O n H o v e r ,
//Отображать пиктограмму при присутствии текста
I c o n V i s i b l e O n T e x t P r e s e n c e ,
//Отображать пиктограмму при отсутствии текста
IconVisibleOnEmptyText ,
//Всегда прятать пиктограмму
IconAlwaysHidden
} ;
void s e t I c o n V i s i b i l i t y ( I c o n V i s i b i l i t y M o d e p I c o n V i s i b i l i t y M o d e ) ;
. . . .
private s l o t s :
void s l o t T e x t C h a n g e d ( const QStri ng &pText ) ;
private :
void u p d a t e I c o n P o s i t i o n A n d S i z e ( ) ;
void s e t I c o n V i s i b l e ( bool p I s V i s i b l e ) ;
private :
I c o n V i s i b i l i t y M o d e m I c o n V i s i b i l i t y M o d e ; //Режим отображения
© 2015 Алексеев Е. Р., Злобин Г. Г., Костюк Д. А., Чеснокова О. В., Чмыхало А. С.


378
Download 5,27 Mb.

Do'stlaringiz bilan baham:
1   ...   168   169   170   171   172   173   174   175   ...   193




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish