Skip to content

sharkpp/qtpopover

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Popover - QDialog base balloon shape widget

QDialog ベースの吹き出し付きポップアップ

画面

利用方法

環境例

項目 内容
アプリケーション名 test
ライブラリフォルダ libs

1)ソースを取得

# git submodule add git@github.com:sharkpp/qtpopover.git libs/qtpopover
# git submodule update

2a)ソースを取り込む

2a.1)プロジェクトファイル(.pro)を変更

アプリケーションの .pro を変更する。

変更例

+ # You can also select to disable deprecated APIs only up to a certain version of Qt.
+ #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0
+
+ include(./libs/qtpopover/sources/popover.pri)
+
+ SOURCES += \
+         main.cpp \
+         mainwindow.cpp \

2b)ライブラリを取り込む

2b.1)ライブラリをビルド

./libs/qtpopover/popover.proQt Creator で開きビルドする。

2b.2)プロジェクトファイル(.pro)を変更

アプリケーションの .pro を変更する。

変更例

+ # You can also select to disable deprecated APIs only up to a certain version of Qt.
+ #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0
+
+ POPOVER_USE_STATIC_LIB=1
+ include(./libs/qtpopover/sources/popover.pri)
+
+ SOURCES += \
+         main.cpp \
+         mainwindow.cpp \

3)QDialog ベースのクラスを作る。

4)ソースの変更

変更例

  #include <QApplication>
  
  TaskTrayPopup::TaskTrayPopup(QWidget *parent)
-     : QDialog(parent)
+     : Popover(parent)
      , ui(new Ui::TaskTrayPopup)
  {
      ui->setupUi(this);

5)ヘッダの変更

変更例

  #ifndef TASKTRAYPOPUP_H
  #define TASKTRAYPOPUP_H
  
+ #include "popover.h"
  
  namespace Ui {
  class TaskTrayPopup;
  }
  
  class TaskTrayPopup
-         : public QDialog
+         : public Popover
  {
      Q_OBJECT
  

6)アプリケーションをビルド

完了

画面

クラスリファレンス

定義 概要
Popover::Popover(QWidget *parent = 0) コンストラクタ

未実装

  • 切り欠きの位置(右寄り/☑️中央/左寄り/なし)
  • 吹き出しの角丸
  • 非アクティブ化処理(まだ一部おかしい)

ライセンス

© 2018 sharkpp

このアプリケーションは MIT ライセンス の下で提供されています。

About

QDialog base balloon shape widget for Qt 5 or later

Topics

Resources

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
LICENSE.ja-JP

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published