-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AppMakers hazi tanulasg #82
Open
kemakee
wants to merge
1
commit into
bmeaut:master
Choose a base branch
from
kemakee:AppMakers_tanulsag
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# AppMakers csapat tanulságai # | ||
### Segmentation fault a program indulásakor ### | ||
|
||
A Qt programunk futtatásakor rögtön az elején SIGSEGV-t dobott, még meg sem jelent semmi. Debugger csak annyit mondott, hogy az alkalmazás .exec(); -ig jut el, a többi a qt library-n belül van, ahonnan a jogosulatlan memória hivatkozás történt. [Stackoverflow](https://stackoverflow.com/questions/47330449/qt-segmentation-fault-at-exec) segített végül: a QApplication construktorának az argc referencia szerint kell (ez valóban le van írva a [dokumentációjában](https://doc.qt.io/qt-5/qapplication.html#QApplication), viszont a [példaprogramban](https://github.com/csorbakristof/alkalmazasfejlesztes/blob/af964ed7e9bf1a8f6c1b1838eb39d9a5491e4f6c/SimpleTelemetryVisualizer/main.cpp#L7) nem így volt). | ||
|
||
QApplication::QApplication(int &argc, char **argv) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Forráskódnál használjátok a ``` környezetet, hogy legyen syntax highlighting. |
||
|
||
### QML GroupBox: Binding loop detected for property "implicitWidth" ### | ||
|
||
[https://doc.qt.io/qt-5/qml-qtquick-controls-groupbox.html](https://doc.qt.io/qt-5/qml-qtquick-controls-groupbox.html): The implicit size of the GroupBox is calculated based on the size of its content. A GroupBox mérete a tartalma alapján határozódik meg. Azaz a benne lévő dolgok méreteinek meghatározása a GroupBox méretének tudata nélkül kell, hogy kiszámolható legyen. Ezért például nem lehet egy child elemének anchors.left: parent.left és anchors.right: parent.right is. Ha olyat akarsz, hogy a szülő határozza meg a tartalma méretét, akkor ne GroupBox-ot használj! | ||
|
||
|
||
### QML GroupBox title ### | ||
|
||
Ha QML-ben egy GroupBox-nak nem akarod, hogy title-je legyen, akkor se hagyd üresen ezt a paramétert, mert feljebb fog csúszni a tényleges tartalom, kilógva a keretből. Egy szóköz segít: title: " " | ||
|
||
### Kép beszúrása gráfra ### | ||
Ha képet szeretnél beszúrni gráfra és azt később dinamikusan változtatni, akkor azt a következő módon teheted meg: | ||
|
||
Image{ | ||
id: image1 | ||
visible: false | ||
source: 'kiscica.png' | ||
} | ||
|
||
A fenti kód segítségével hozd létre a képet, objektumot és rejtsd el(visible:false), mindezt a canvason belül. Ezután id segítségével tudsz rá hivatkozni és manipulálni: | ||
|
||
context.drawImage(image1, width, height, width, height); | ||
|
||
Mivel ez javascript, ezért rengeteg lehetőséget biztosít különféle módosításokhoz a képpel. | ||
Dokumentáció: [https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/drawImage](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/drawImage) | ||
|
||
### Doxygen binárisok ### | ||
|
||
Régebbi Doxygen binárisok letöltése: [https://sourceforge.net/projects/doxygen/files/](https://sourceforge.net/projects/doxygen/files/) | ||
(mi linuxon végül a 1.8.11-es verzióval csináltuk). |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A fájl elejéről hiányzik a fejléc, meg a könyvtár neve sem stimmel. Legyen a tiétek a 46-os. A fejlécben a tags legyen "alkfejl afhf skipfromindex".