'Programming/qt'에 해당되는 글 37건

  1. 2014.11.06 QT font 관련
  2. 2014.11.05 QT modules
  3. 2014.11.05 QT Quick UI 2
  4. 2014.09.20 qt moc(Meta Object Compiler)
  5. 2014.09.19 Qt 기본 encoding 설정
  6. 2014.09.19 qt 시그널 .. emit
  7. 2014.09.19 qt 설치 -_-a
Programming/qt2014. 11. 6. 15:03
/usr/local/QtEmbedded-4.8.3/lib/fonts
*.ttf
*.qpf

[링크 : http://forum.falinux.com/zbxe/index.php?document_srl=498350&mid=graphic]



1. qt는 PFA/FPB BDF,TTF,qtf 폰트등을 지원합니다. 

2. qpf 폰트는 qt가 이들 bdf, ttf 폰트를 로드해서 rendering 이라는 절차를 거치는 과정에서 qpf라는 폰트를 나름대로 만들어서 사용을 하는 폰트입니다. qt쪽에서 보다 더 빠르게 만들어 놓은 format입니다. 
[링크 : http://www.korone.net/bbs/board.php?bo_table=qt_qna&wr_id=15069

umlaut

'Programming > qt' 카테고리의 다른 글

qt signal & slot - connect / disconnect / emit  (0) 2014.11.21
qt 프로젝트 파일 연관  (0) 2014.11.20
QT modules  (0) 2014.11.05
QT Quick UI  (2) 2014.11.05
qt moc(Meta Object Compiler)  (0) 2014.09.20
Posted by 구차니
Programming/qt2014. 11. 5. 16:20
java 에서는 package라고 하고
qt 에서는 module 이라고 하나보다

아무튼 module 이름으로 include 하면된다.
#include <Qtgui> 


Modules for general software development
QtCore Core non-graphical classes used by other modules
QtGui Graphical user interface (GUI) components
QtMultimedia Classes for low-level multimedia functionality
QtNetwork Classes for network programming
QtOpenGL OpenGL support classes
QtOpenVG OpenVG support classes
QtScript Classes for evaluating Qt Scripts
QtScriptTools Additional Qt Script components
QtSql Classes for database integration using SQL
QtSvg Classes for displaying the contents of SVG files
QtWebKit Classes for displaying and editing Web content
QtXml Classes for handling XML
QtXmlPatterns An XQuery & XPath engine for XML and custom data models
QtDeclarative An engine for declaratively building fluid user interfaces.
Phonon Multimedia framework classes
Qt3Support Qt 3 compatibility classes
Modules for working with Qt's tools
QtDesigner Classes for extending Qt Designer
QtUiTools Classes for handling Qt Designer forms in applications
QtHelp Classes for online help
QtTest Tool classes for unit testing
Modules for Windows developers
QAxContainer Extension for accessing ActiveX controls
QAxServer Extension for writing ActiveX servers
Modules for Unix developers
QtDBus Classes for Inter-Process Communication using the D-Bus

[링크 : http://qt-project.org/doc/qt-4.8/modules.html]

'Programming > qt' 카테고리의 다른 글

qt 프로젝트 파일 연관  (0) 2014.11.20
QT font 관련  (0) 2014.11.06
QT Quick UI  (2) 2014.11.05
qt moc(Meta Object Compiler)  (0) 2014.09.20
Qt 기본 encoding 설정  (0) 2014.09.19
Posted by 구차니
Programming/qt2014. 11. 5. 16:12
요약 : Quick UI는 qml 이라는 문서를 통해 GUI가 생성된다.


심심(?)해서 Qt Widgets Application 대신 QT Quick UI를 해서 프로젝트를 생성하니


QT Creator 에서 복사하니 이렇게 코드가 컬러풀 하게 붙여지네 ㄷㄷ

import QtQuick 2.3
import QtQuick.Controls 1.2
import QtQuick.Window 2.2

ApplicationWindow {
    title: qsTr("Hello World")
    width: 640
    height: 480

    menuBar: MenuBar {
        Menu {
            title: qsTr("File")
            MenuItem {
                text: qsTr("&Open")
                onTriggered: console.log("Open action triggered");
            }
            MenuItem {
                text: qsTr("Exit")
                onTriggered: Qt.quit();
            }
        }
    }

    Button {
        text: qsTr("Hello World")
        anchors.horizontalCenter: parent.horizontalCenter
        anchors.verticalCenter: parent.verticalCenter
    }
}

이렇게 나온다 ㄷㄷ


'Programming > qt' 카테고리의 다른 글

QT font 관련  (0) 2014.11.06
QT modules  (0) 2014.11.05
qt moc(Meta Object Compiler)  (0) 2014.09.20
Qt 기본 encoding 설정  (0) 2014.09.19
qt 시그널 .. emit  (0) 2014.09.19
Posted by 구차니
Programming/qt2014. 9. 20. 21:42
qt의 c++ 확장인
signal등을 처리하는 비표준 부분을 처리해주는 녀석이 MOC 인거 같은데..
어떻게 보면 qt의 C++비표준 부분에 의해서 나노먼지 단위로 까이는 부분이 이 것 일려나?

[링크 : http://qt-project.org/doc/qt-5/moc.html]
[링크 : http://qt-project.org/doc/qt-5/metaobjects.htm]

'Programming > qt' 카테고리의 다른 글

QT modules  (0) 2014.11.05
QT Quick UI  (2) 2014.11.05
Qt 기본 encoding 설정  (0) 2014.09.19
qt 시그널 .. emit  (0) 2014.09.19
qt 설치 -_-a  (0) 2014.09.19
Posted by 구차니
Programming/qt2014. 9. 19. 17:57

Tools - Option - Text Editor - Behavior  - File Encodings


기본은 UTF-8인데 인코딩이 맞지 않을 경우 상단에 인코딩 바꾸라는 말이 나온다.
EUC-KR의 경우 windows-949로 설정하면 된다.

'Programming > qt' 카테고리의 다른 글

QT modules  (0) 2014.11.05
QT Quick UI  (2) 2014.11.05
qt moc(Meta Object Compiler)  (0) 2014.09.20
qt 시그널 .. emit  (0) 2014.09.19
qt 설치 -_-a  (0) 2014.09.19
Posted by 구차니
Programming/qt2014. 9. 19. 15:27
qt 프로젝트 소소를 뒤지다 보니 emit이라는게 나와 찾아보니
시그널 관련된 키워드라고 한다.
(게다가 c++이라 ctags는 헤매고 있고.. -_-)

[링크 : http://qt-project.org/doc/qt-4.8/signalsandslots.html]
[링크 : http://www.korone.net/bbs/board.php?bo_table=qt_qna&wr_id=14903
[링크 : http://woboq.com/blog/how-qt-signals-slots-work.html]


---
2014.11.12

[링크 : http://forum.falinux.com/zbxe/index.php?document_srl=406286&mid=graphic] 슬롯
[링크 : http://forum.falinux.com/zbxe/index.php?document_srl=406288&mid=graphic] 사용자 슬롯
[링크http://forum.falinux.com/zbxe/index.php?document_srl=406322&mid=graphic 시그널 & 슬롯
[링크 : http://www.korone.net/bbs/board.php?bo_table=qt_lecture&wr_id=475
[링크 : http://berabue.tistory.com/90]  

'Programming > qt' 카테고리의 다른 글

QT modules  (0) 2014.11.05
QT Quick UI  (2) 2014.11.05
qt moc(Meta Object Compiler)  (0) 2014.09.20
Qt 기본 encoding 설정  (0) 2014.09.19
qt 설치 -_-a  (0) 2014.09.19
Posted by 구차니
Programming/qt2014. 9. 19. 15:25
QT 개발환경은 여러가지가 있는데 아무래도 윈도우에서 하다 보니..
MinGW가 포함되어 있는 녀석을 골라야 하는데 헐... 737메가!! ㄷㄷㄷ
아무튼 이거 하나 깔면된다.

Source Components는 예제 파일.
음. 그런데 왜 Tools과 Qt양쪽에 MinGW가 포함되어 있는걸까?



Qt Online Installer for Linux 32-bit (23 MB) (Info)
Qt Online Installer for Linux 64-bit (22 MB) (Info)
Qt Online Installer for Mac (9.5 MB) (Info)
Qt Online Installer for Windows (14 MB) (Info)
Qt 5.3.2 for Android (Linux 32-bit, 518 MB) (Info)
Qt 5.3.2 for Android (Linux 64-bit, 517 MB) (Info)
Qt 5.3.2 for Android (Windows 32-bit, 817 MB) (Info)
Qt 5.3.2 for Linux 32-bit (449 MB) (Info)
Qt 5.3.2 for Linux 64-bit (447 MB) (Info)
Qt 5.3.2 for Mac (456 MB) (Info)
Qt 5.3.2 for iOS (Mac, 913 MB) (Info)
Qt 5.3.2 for Android (Mac, 517 MB) (Info)
Qt 5.3.2 for Android and iOS (Mac, 1.0 GB) (Info)
Qt 5.3.2 for Windows 32-bit (MinGW 4.8.2, OpenGL, 737 MB) (Info)
Qt 5.3.2 for Windows 32-bit (VS 2010, OpenGL, 539 MB) (Info)
Qt 5.3.2 for Windows 32-bit (VS 2012, OpenGL, 555 MB) (Info)
Qt 5.3.2 for Windows 32-bit (VS 2013, 561 MB) (Info)
Qt 5.3.2 for Windows 32-bit (VS 2013, OpenGL, 559 MB) (Info)
Qt 5.3.2 for Windows 64-bit (VS 2013, 575 MB) (Info)
Qt 5.3.2 for Windows 64-bit (VS 2013, OpenGL, 573 MB) (Info)
Qt 5.3.2 for Windows RT 32-bit (649 MB) (Info)

기본 다운로드인 온라인 설치 버전은 10MB 이지만
다운로드 속도가 풀 패키지 보다 받는게 느리므로 여러모로 풀 패키지가 유리하다.

[링크 : http://qt-project.org/downloads]

'Programming > qt' 카테고리의 다른 글

QT modules  (0) 2014.11.05
QT Quick UI  (2) 2014.11.05
qt moc(Meta Object Compiler)  (0) 2014.09.20
Qt 기본 encoding 설정  (0) 2014.09.19
qt 시그널 .. emit  (0) 2014.09.19
Posted by 구차니