Fix for Call ended window displayed to shortly
Separted the logic of two gui timers in call window.
Removed redundant main window in call app
Refactored CallWindow interface
Original behaviour (from dial window) was that user-provided number
was send to db with partial match query. This could cause more than
one result, with no further selection rule. Solution to this
particular behavior was to switch to full number match query.
Additionally problem with unrecognizable prefixes in user-provided
numbers was solved.
According to PurePhone design emergency call
window is needed after "SOS" callback at the screen lock.
This PR introduce implementation of emergency call window
and also refactor in the enter number window. Both windows
derives from new number window.
Fix the persistent answer and reject labels in Call Window issue
Fix the wrong call duration issue in both Call and Calls apps
Fix the not working call ignoring issue
* Moved ApplicationLauncher to separate files - declutering
* WindowsStore renamed to WindowsFactory - Store needs to be splitted toavoid antipattern
* Options window build dynamically onBeforeShow
* Dialog windows dynamically built
* Timers now are Application thread safe
* Timers now have consistent API independend of Application (no more c style timers)
* Timers can have either: callback or override onTimer() method - this
way we can create more complicated timers or just use existing ones
* gui::Timer added via adapter class GuiTimer to decouple sys::Timer
with gui::Timer
* Fixed race in wrapper
* Updated docs
* fixed using std and cpp_freertos and DataReceivedHandler hidden in Application.hpp
* [EGD-3188] new sms window - fix layout and functionalities
* [EGD-3188] sending sms from calllog and phonebook
* [EGD-3188] aborting the incoming call via sending sms template
Unufy sms ui common actions to use libphone number only
added default option to contactrecrord::getformattedname method
* [EGD-3188] fix for siwtching back from sms template window when the call is aborted
* [EGD-3188] PR fixes
Use specialized class to to pass phone number between apps and services
instead of ambigious std::string. Introduced class (utils::PhoneNumber)
wraps calls to libphonenumber providing more convienient interface.
However using libphonenumber directly may be resource hungry in terms
of stack, heap and cpu usage, so helper class has been introduced to
pass information about phone numbers (utils::PhoneNumber::View). It is
designed to maintain integrity thus can be created from an instance of
utils::PhoneNumber only or moved/copied to.
Add new field to the calllog db holding e164 formatted number. Both
entered and e164 numbers will be needed to be able to match with
contacts correctly.
Add constexpr information about country codes (utils::country).
* [EGD-558][fix] change error to info
* [EGD-558] added volume control of currently active audio operation
* [EGD-558] added ringing on incoming call
* [EGD-558] mini clean up in callwindow
* [EGD-558] removed reinterpret_casts and added some logging
* [EGD-558] rewritten methods to increment/decrement volume
* [EGD-558] clean up
* [EGD-558] moved volume control to application class
added nullptr checks
* [EGD-558] fixed types
* [EGD-558] added some audio debug logs
* [EGD-558] left a comment why ringing sound is currently disabled
* [EGD-558] PR fixes
* [EGD-558] PR fix
* [EGD-558] added propper error codes on pointer checking in Audio.cpp
Augment handling phone numbers with libphonenumber:
- add "as you type" formatting to phone numbers,
- normalize phone number handling by using libphonenumber's phone
number representation.
Clean up the code by moving application logic back to the application
and window data back to the window and reordering includes.
Application's stack size has been increased due to formatter stack
utilization level.
* [GED-2539] Timestamp : changed buffer to heap one
[EGD-2539] implemented 1st version of Duration class
[EGD-2539] added autoformating of the output
[EGD-2539] clean up
[EGD-2539] used duration in call and calllog
added Duration operators
[EGD-2539] add better duartions to calllog.db
[EGD-2539] format file
* [EGD-2539] fixes after rebase
* [EGD-2539] displayed format follows design guidline
* [EGD-2539] added UT for duration class and necessary FW fixes
* [EGD-2539] fixed tim_conversion UT
* [EGD-2539] PR fixes
* [EGD-2539] added move constructor to UTF8 class
* [EGD-2539] added checking for nullptr in fillContactData
* [EGD-2539] PR fixes
* [EGD-2566] refactored cellular notification recogniton
* [EGD-2566] add new conversion to dBm
* [EGD-2566] added dBm to bar calculations
some minor fixes connected to signal strength
put static data in event store
* [EGD-2566] removed magic number
* [EGD-2566] PR fixes
* [EGD-2566] PR fixes
* [EGD-2566] missing rebase fix
* [EGD-2566] moved Signal Strength to separate file.
* [EGD-2566] missing return
* [EGD-2566] update signalstrength without message sending
* [EGD-2566] reverted USE_DAEFAULT_BAUDRATE to 1
* [EGD-2566][fix] missing change for closing end call window
* [EGD-2566] fix for proper checking for CSQ. Verbose setting of singla strength in Store
* [EGD-2566] fixed inlude in ScopeDTime.
* [EGD-2566] added mutex in GSM store
* [EGD-2566] missing change
* [EGD-2566] reverted USE_DAEFAULT_BAUDRATE
* [EGD-2566] PR fixy
* [EGD-2569] added # and * as numeric inputs
* [EGD-2569] added '+' input sign
* [EGD-2569] created defines with window names for call app
* [EGD-2547] contact recognition during call
* [EGD-2547] moved UiCommon
* [fix][EGD-2547] fix for setting empty UTF string to text gui field
* [EGD-2547] adding new contact from call enter window
* [EGD-2547] minor clean up and added param validation
* [EGD-2547] easier method to add contact
* [EGD-2569] added new keyboard profile (numeric with special signs)
Desktop is passing it properly to Call app.
* [EGD-2569] added transaltor to enternumberwindow
* [EGD-2569] reverted unnecessary changes
[EGD-2569] revert
[EGD-2569] revert of not needed changes
* [EGD-2569] fix in phone.kprof
* [EGD-2547] unified API to call and send sms
* [EGD-2547] changed default to true
* [EGD-2547] minor clean up.
* [EGD-2569] revert changes in PinLockWindow.cpp
* [EGD-2569][fix] eneter as null char
* [EGD-2547] PR fixes
[EGD-2547] code review fixes / refactored UiCommon
[EGD-2547] more code review fixes
[EGD-2547] rem not needed cast
* [EGD-2547] PR fixes
* [EGD-2547] splitting of UiCommon
* [EGD-2547] typo fix
* [EGD-2547] revereted one line conversion from char to string.
* [EGD-2420] minor fix in call app timer
* [EGD-2420] added missing dictionary definitions
* [EGD-2420] removed the same preprocesor defintions
* [fix][EGD-2420] for adding new entry to calllog DB.
It is workaournd as it looks like there is issue with printing 64bit variables in vsnprintf
* [EGD-2420] added new timer for call duration on cellular servcice.
* [EGD-2420] changed unnecessary LOG_ERRORs to LOG_DEBUGs
* [EGD-2420] changed logging levels
* [EGD-2420] added TODO