miqt/TODO

95 lines
3.3 KiB
Plaintext
Raw Normal View History

2024-08-06 01:06:50 +00:00
Phase zero
- [X] Handwritten bindings
Phase 1
- [X] Parse headers
2024-08-08 07:06:50 +00:00
- [ ] Generate types
- [X] Convert parameter pointer types to binding types
- [X] Basic methods
2024-08-10 00:54:31 +00:00
- [X] Special methods
- [X] Constructors
- [X] Prevent calling ctor of abstract class
- [X] ~~Destructors~~ We only need .Delete()
- [X] Copy-constructors
2024-08-11 04:37:26 +00:00
- [ ] Move-constructors (e.g. QWidgetData)
2024-08-08 07:06:50 +00:00
- [X] Operator overloading
2024-08-10 00:54:31 +00:00
- [X] Class inheritance
- [X] Detect in AST
- [X] ~~Downcast helper methods~~ Direct type available
2024-08-15 07:53:28 +00:00
- [ ] Public member variables
2024-08-11 04:37:26 +00:00
- [ ] Static methods (e.g. QWidget::setTabOrder)
2024-08-09 22:36:41 +00:00
- [X] Return of class types passed by pointer
2024-08-11 04:37:26 +00:00
- [X] Return of class types passed by value (e.g. `_Icon()`)
2024-08-09 22:36:41 +00:00
- ~~want to copy-construct into Go-provided memory~~ Go can't allocate a C++ type
- Return as a heap pointer instead
- [X] Class parameters passed by pointer (want to call `cPointer()`)
- [X] Class parameters passed by value (need to dereference) e.g. `_SetIcon()`
- [X] QString type conversion
2024-08-11 04:37:26 +00:00
- [X] For parameters
- [X] For return types
- [X] QList type conversion (e.g. QWidget::Actions())
- [X] For parameters
- [X] For return types
2024-08-15 07:53:28 +00:00
- [X] QStringList combination type conversion
- [X] ~~QByteArray type conversion~~ Seems to be fine as a non-templated type
2024-08-08 07:06:50 +00:00
- [X] Hide private methods
2024-08-11 04:37:26 +00:00
- [X] Optional parameters
2024-08-15 07:53:28 +00:00
- [X] Overloaded methods
- [ ] Simple typedefs (e.g. WId)
2024-08-09 22:36:41 +00:00
- [ ] Qt:: namespace enums/const values
2024-08-11 04:37:26 +00:00
- e.g. Qt::WindowFlags (global)
- e.g. QWidget::RenderFlag (per-class)
2024-08-09 22:36:41 +00:00
- [ ] Free functions
2024-08-08 07:06:50 +00:00
- [ ] QtCore
- [ ] QtGui
- [ ] QtWidgets
2024-08-15 07:53:28 +00:00
- [ ] `connect`
2024-08-11 04:37:26 +00:00
- [ ] Minimal example
- [ ] Calling connect
2024-08-08 07:06:50 +00:00
- [X] Pick a name for the package
- [ ] Make github repo, rename module
2024-08-06 01:06:50 +00:00
- [ ] v0 Public release
Phase 2
2024-08-15 07:53:28 +00:00
- [X] ~~QString / QList helper functions~~ Lean on native Go types
- [ ] Other Qt template containers
- [ ] QVector
- [ ] QMap / QHash
- [ ] QSet
- [ ] Test edge cases
- Exercising QString interop
- Exercising QList interop
- QByteArray::split returning QList<QByteArray> memory safety
- QIcon.SetThemeSearchPaths taking QStringList
- Calling methods on base class
- Anything where we use runtime.SetFinalizer
- [ ] Documentation
- [ ] Adapt examples from other Go Qt bindings
- [ ] Document comparison with other Qt binding packages
- [ ] Document use for Windows/macOS/Linux
2024-08-06 01:06:50 +00:00
Wishlist
2024-08-15 07:53:28 +00:00
- [X] Remove P* types (Cgo does support pointers to incomplete C types)
- [ ] CI action to rebuild bindings
- [ ] Convert generated cpp files to amalgamation build for faster compilation
- https://github.com/golang/go/issues/9887
- [ ] Consider projecting QByteArray as []byte
- [ ] Subclassing (e.g. render delegates)
2024-08-06 01:06:50 +00:00
- [ ] Custom Q_PROPERTY support
- [ ] uic implementation
- [ ] Use clang ast's `mangledName` to make a dlsym/LazyDLL cgo-free version
2024-08-15 07:53:28 +00:00
- [ ] Copy Qt documentation into function doc comments for IDE hinting
2024-08-08 07:06:50 +00:00
- [ ] Generate bindings for all current Qt versions (Debian Qt / Qt LTS), expose as git tags
2024-08-09 22:36:41 +00:00
- [ ] Reuse CABI to generate Qt bindings for other non-Go languages
2024-08-11 04:37:26 +00:00
- [ ] Reduce necessary memory copies around ABI boundaries
2024-08-15 07:53:28 +00:00
- [ ] Bypass malloc/free for zero-length strings
- [ ] Bypass malloc/free for zero-length arrays
- [ ] Generate other Qt libraries e.g. QtSvg
- [ ] Document process for binding more libraries e.g. QScintilla, QZXing
- [ ] Qt Creator integration
- [ ] Get down to zero ErrTooComplex skips