├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── data ├── beep.wav ├── com.github.parnold-x.timer.appdata.xml.in ├── com.github.parnold-x.timer.desktop.in ├── com.github.parnold-x.timer.gresource.xml ├── com.github.parnold-x.timer.gschema.xml ├── icons │ ├── 32 │ │ └── com.github.parnold-x.timer.svg │ ├── 48 │ │ └── com.github.parnold-x.timer.svg │ ├── 64 │ │ └── com.github.parnold-x.timer.svg │ └── 128 │ │ └── com.github.parnold-x.timer.svg ├── meson.build └── screenshot.png ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── source │ └── format ├── meson.build ├── meson └── post_install.py ├── po ├── LINGUAS ├── POTFILES ├── com.github.parnold-x.timer.pot ├── extra │ ├── LINGUAS │ ├── POTFILES │ ├── extra.pot │ ├── fr.po │ ├── meson.build │ └── tr.po ├── fr.po ├── meson.build └── tr.po └── src ├── Application.vala ├── ColorChooser.vala ├── ColorManager.vala ├── Logic ├── TimeSpan.vala ├── TimerManager.vala └── TimerObject.vala ├── MainWindow.vala ├── TimerEntry.vala ├── TitleLabel.vala └── meson.build /.editorconfig: -------------------------------------------------------------------------------- 1 | 2 | # EditorConfig 3 | root = true 4 | 5 | # elementary defaults 6 | [*] 7 | charset = utf-8 8 | end_of_line = lf 9 | indent_size = tab 10 | indent_style = space 11 | insert_final_newline = true 12 | max_line_length = 80 13 | tab_width = 4 14 | 15 | # Markup files 16 | [{*.html,*.xml,*.xml.in,*.yml}] 17 | tab_width = 2 -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: [push, pull_request] 4 | 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | 9 | container: 10 | image: elementary/docker:unstable 11 | 12 | steps: 13 | - uses: actions/checkout@v1 14 | - name: Install Dependencies 15 | run: | 16 | apt update 17 | apt install -y meson gobject-introspection libgtk-3-dev libgee-0.8-dev libgstreamer-plugins-base1.0-dev libunity-dev valac 18 | - name: Build 19 | run: | 20 | meson build --prefix=/usr 21 | cd build 22 | ninja install 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | language: node_js 4 | 5 | node_js: 6 | - 10/* 7 | 8 | sudo: required 9 | 10 | services: 11 | - docker 12 | 13 | addons: 14 | apt: 15 | sources: 16 | - ubuntu-toolchain-r-test 17 | packages: 18 | - libstdc++-5-dev 19 | 20 | install: 21 | - npm i -g @elementaryos/houston 22 | 23 | script: 24 | - houston ci 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Timer 2 | 3 | ### The ultimate tea timer 4 | 5 | 6 | ![screenshot](data/screenshot.png) 7 | 8 | ## Usage 9 | * Start a timer with natural language input like e.g. 5 minutes 15 seconds or 5m3s or just 5 for 5 minutes 10 | * You can assign a title to your timer by double clicking 11 | * Various color options to choose from 12 | * Command line options available, see --help for more information 13 | 14 | ## Installation 15 | [![Get it on AppCenter](https://appcenter.elementary.io/badge.svg)](https://appcenter.elementary.io/com.github.parnold-x.timer) 16 | 17 | 18 | ## Building 19 | Dependencies: 20 | * valac 21 | * glib-2.0 22 | * gee-0.8 23 | * gtk+-3.0 24 | * gstreamer-audio-1.0 25 | * unity 26 | 27 | then build with: 28 | 29 | ``` 30 | meson build --prefix=/usr 31 | cd build 32 | sudo ninja install 33 | ``` 34 | -------------------------------------------------------------------------------- /data/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parnoldx/timer/7872c9d1783f989dc01a7087a9db8a95a170eb96/data/beep.wav -------------------------------------------------------------------------------- /data/com.github.parnold-x.timer.appdata.xml.in: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.github.parnold-x.timer 5 | CC0-1.0 6 | GPL-3.0+ 7 | Timer 8 | The ultimate tea timer 9 | 10 |

The ultimate tea timer you searched for.

11 |
    12 |
  • Start a timer with natural language input like e.g. 5 minutes 15 seconds or 5m3s or just 5 for 5 minutes
  • 13 |
  • You can assign a title to your timer by double clicking
  • 14 |
  • Various color options to choose from
  • 15 |
  • Command line options available, see --help for more information
  • 16 |
17 |
18 | 19 | com.github.parnold-x.timer 20 | 21 | 22 | 23 | https://raw.githubusercontent.com/parnold-x/timer/master/data/screenshot.png 24 | 25 | 26 | Peter Arnold 27 | https://github.com/parnold-x/timer 28 | https://github.com/parnold-x/timer/issues 29 | 30 | rgb(234, 255, 198) 31 | rgb(23, 107, 0) 32 | pk_live_RErH63v8TNvv1Z37UIiGJw8y 33 | 34 | 35 | 36 | 37 |

Added Languages: FR, TR

38 |

New icon by Faith20

39 |

Some bugfixes

40 |
41 |
42 | 43 | 44 |

Release for Juno

45 |
46 |
47 | 48 | 49 |

This release adds float parsing. So now you can also enter e.g. 3.5 for 3 minutes and 30 seconds

50 |
51 |
52 |
53 |
54 | -------------------------------------------------------------------------------- /data/com.github.parnold-x.timer.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=Timer 4 | Comment=The ultimate tea timer 5 | GenericName=Timer 6 | TryExec=com.github.parnold-x.timer 7 | Exec=com.github.parnold-x.timer 8 | Icon=com.github.parnold-x.timer 9 | Terminal=false 10 | Categories=GTK;Utility; 11 | Keywords=Timer;TeaTimer;Countdown;Alarm; 12 | -------------------------------------------------------------------------------- /data/com.github.parnold-x.timer.gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | beep.wav 5 | 6 | -------------------------------------------------------------------------------- /data/com.github.parnold-x.timer.gschema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -1 8 | Most recent x position of Timer 9 | Most recent x position of Timer 10 | 11 | 12 | -1 13 | Most recent y position of Timer 14 | Most recent y position of Timer 15 | 16 | 17 | "Lime" 18 | Timer theme color 19 | Most recent choosen timer theme color 20 | 21 | 22 | true 23 | Beep sound 24 | Play a beep sound when the timer finishes 25 | 26 | 27 | true 28 | Beep flash 29 | Flash 3 times red when the timer finishes 30 | 31 | 32 | false 33 | Keep window on top 34 | If activated the timer window stays on top of all windows 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /data/icons/128/com.github.parnold-x.timer.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 51 | 60 | 61 | 63 | 66 | 70 | 74 | 78 | 82 | 86 | 87 | 90 | 94 | 98 | 102 | 106 | 107 | 110 | 114 | 118 | 122 | 126 | 127 | 129 | 133 | 137 | 141 | 142 | 144 | 148 | 152 | 156 | 160 | 161 | 170 | 180 | 190 | 192 | 196 | 200 | 201 | 210 | 220 | 230 | 239 | 248 | 251 | 256 | 257 | 266 | 275 | 278 | 283 | 284 | 293 | 296 | 301 | 302 | 303 | 307 | 333 | 337 | 341 | 343 | 349 | 351 | 356 | 361 | 366 | 371 | 376 | 377 | 378 | 380 | 385 | 390 | 395 | 396 | 398 | 403 | 409 | 416 | 417 | 419 | 424 | 429 | 435 | 436 | 438 | 443 | 449 | 454 | 455 | 456 | 457 | -------------------------------------------------------------------------------- /data/icons/32/com.github.parnold-x.timer.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 53 | 62 | 63 | 65 | 68 | 72 | 76 | 80 | 84 | 85 | 88 | 92 | 96 | 100 | 104 | 105 | 107 | 111 | 115 | 119 | 120 | 122 | 126 | 130 | 134 | 138 | 139 | 148 | 158 | 168 | 170 | 174 | 178 | 179 | 188 | 198 | 208 | 218 | 227 | 230 | 235 | 236 | 245 | 254 | 257 | 262 | 263 | 266 | 271 | 272 | 281 | 282 | 296 | 323 | 328 | 332 | 336 | 342 | 345 | 350 | 355 | 360 | 365 | 370 | 371 | 372 | 377 | 382 | 387 | 392 | 398 | 406 | 408 | 413 | 418 | 425 | 426 | 429 | 434 | 439 | 446 | 447 | 448 | 449 | -------------------------------------------------------------------------------- /data/icons/48/com.github.parnold-x.timer.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 53 | 62 | 63 | 65 | 68 | 72 | 76 | 80 | 84 | 85 | 88 | 92 | 96 | 100 | 104 | 105 | 107 | 111 | 115 | 119 | 120 | 122 | 126 | 130 | 134 | 138 | 139 | 148 | 158 | 168 | 170 | 174 | 178 | 179 | 188 | 198 | 208 | 218 | 227 | 230 | 235 | 236 | 245 | 254 | 257 | 262 | 263 | 266 | 271 | 272 | 281 | 282 | 296 | 323 | 328 | 332 | 336 | 342 | 345 | 350 | 355 | 360 | 365 | 370 | 371 | 372 | 377 | 382 | 387 | 392 | 398 | 406 | 410 | 415 | 420 | 427 | 428 | 432 | 437 | 442 | 449 | 450 | 451 | 452 | -------------------------------------------------------------------------------- /data/icons/64/com.github.parnold-x.timer.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 53 | 62 | 63 | 65 | 68 | 72 | 76 | 80 | 84 | 88 | 89 | 92 | 96 | 100 | 104 | 108 | 109 | 112 | 116 | 120 | 124 | 128 | 129 | 131 | 135 | 139 | 143 | 144 | 146 | 150 | 154 | 158 | 162 | 163 | 172 | 182 | 192 | 194 | 198 | 202 | 203 | 212 | 222 | 232 | 241 | 250 | 253 | 258 | 259 | 268 | 277 | 280 | 285 | 286 | 295 | 298 | 303 | 304 | 305 | 319 | 346 | 351 | 355 | 359 | 365 | 368 | 373 | 378 | 383 | 388 | 393 | 394 | 395 | 399 | 404 | 409 | 414 | 415 | 419 | 424 | 430 | 437 | 438 | 442 | 447 | 452 | 458 | 459 | 463 | 468 | 474 | 479 | 480 | 481 | 482 | -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- 1 | icon_sizes = ['32', '48', '64', '128'] 2 | 3 | foreach i : icon_sizes 4 | install_data( 5 | join_paths('icons', i, meson.project_name() + '.svg'), 6 | install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps') 7 | ) 8 | install_data( 9 | join_paths('icons', i, meson.project_name() + '.svg'), 10 | install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, '@2', 'apps') 11 | ) 12 | endforeach 13 | 14 | install_data( 15 | meson.project_name() + '.gschema.xml', 16 | install_dir: join_paths(get_option('datadir'), 'glib-2.0', 'schemas') 17 | ) 18 | 19 | i18n.merge_file( 20 | input: meson.project_name() + '.desktop.in', 21 | output: meson.project_name() + '.desktop', 22 | po_dir: join_paths(meson.source_root(), 'po', 'extra'), 23 | type: 'desktop', 24 | install: true, 25 | install_dir: join_paths(get_option('datadir'), 'applications') 26 | ) 27 | 28 | i18n.merge_file( 29 | input: meson.project_name() + '.appdata.xml.in', 30 | output: meson.project_name() + '.appdata.xml', 31 | po_dir: join_paths(meson.source_root(), 'po', 'extra'), 32 | install: true, 33 | install_dir: join_paths(get_option('datadir'), 'metainfo') 34 | ) 35 | -------------------------------------------------------------------------------- /data/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parnoldx/timer/7872c9d1783f989dc01a7087a9db8a95a170eb96/data/screenshot.png -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- 1 | com.github.parnold-x.timer (0.1) UNSTABLE; urgency=low 2 | 3 | * Initial Release. 4 | 5 | -- Peter Arnold Sun, 31 Oct 2017 14:53:39 +0100 6 | -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- 1 | Source: com.github.parnold-x.timer 2 | Section: utility 3 | Priority: optional 4 | Standards-Version: 3.9.3 5 | Maintainer: Peter Arnold 6 | Build-Depends: meson, 7 | debhelper (>= 9), 8 | libgtk-3-dev, 9 | valac (>= 0.16), 10 | libgstreamer-plugins-base1.0-dev, 11 | libunity-dev 12 | 13 | Package: com.github.parnold-x.timer 14 | Architecture: any 15 | Depends: ${misc:Depends}, ${shlibs:Depends} 16 | Description: The ultimate tea timer 17 | -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Upstream-Name: com.github.parnold-x.timer 3 | Source: https://github.com/parnold-x/timer/tree/master 4 | 5 | Files: * 6 | Copyright: 2017 Peter Arnold 7 | License: GPL-3.0+ 8 | 9 | License: GPL-3.0+ 10 | This program is free software: you can redistribute it and/or modify 11 | it under the terms of the GNU General Public License as published by 12 | the Free Software Foundation, either version 3 of the License, or 13 | (at your option) any later version. 14 | . 15 | This package is distributed in the hope that it will be useful, 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 | GNU General Public License for more details. 19 | . 20 | You should have received a copy of the GNU General Public License 21 | along with this program. If not, see . 22 | . 23 | On Debian systems, the complete text of the GNU General 24 | Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". 25 | 26 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # -*- makefile -*- 3 | # Sample debian/rules that uses debhelper. 4 | # This file was originally written by Joey Hess and Craig Small. 5 | # As a special exception, when this file is copied by dh-make into a 6 | # dh-make output file, you may use that output file without restriction. 7 | # This special exception was added by Craig Small in version 0.37 of dh-make. 8 | 9 | # Uncomment this to turn on verbose mode. 10 | #export DH_VERBOSE=1 11 | 12 | %: 13 | dh $@ 14 | 15 | override_dh_auto_clean: 16 | rm -rf debian/build 17 | 18 | override_dh_auto_configure: 19 | mkdir -p debian/build 20 | cd debian/build && meson --prefix=/usr ../.. 21 | 22 | override_dh_auto_build: 23 | cd debian/build && ninja -v 24 | 25 | override_dh_auto_test: 26 | cd debian/build && ninja test 27 | 28 | override_dh_auto_install: 29 | cd debian/build && DESTDIR=${CURDIR}/debian/com.github.parnold-x.timer ninja install -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- 1 | project('com.github.parnold-x.timer', 'vala', 'c', version: '0.3.1') 2 | 3 | gnome = import('gnome') 4 | i18n = import('i18n') 5 | 6 | add_project_arguments( 7 | '-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name()), 8 | language: 'c' 9 | ) 10 | 11 | asresources = gnome.compile_resources( 12 | 'as-resources', 13 | join_paths('data', meson.project_name()) + '.gresource.xml', 14 | source_dir: 'data', 15 | c_name: 'as' 16 | ) 17 | 18 | subdir('src') 19 | 20 | executable( 21 | meson.project_name(), 22 | sources, 23 | asresources, 24 | dependencies: [ 25 | dependency('glib-2.0'), 26 | dependency('gio-2.0'), 27 | dependency('gio-unix-2.0'), 28 | dependency('gobject-2.0'), 29 | dependency('gtk+-3.0'), 30 | dependency('gstreamer-audio-1.0'), 31 | dependency('unity'), 32 | meson.get_compiler('c').find_library('m', required: false) 33 | ], 34 | install : true 35 | ) 36 | 37 | subdir('data') 38 | subdir('po') 39 | 40 | meson.add_install_script('meson/post_install.py') 41 | -------------------------------------------------------------------------------- /meson/post_install.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | from os import path, environ 4 | import subprocess 5 | 6 | prefix = environ.get('MESON_INSTALL_PREFIX', '/usr/local') 7 | schemadir = path.join(environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas') 8 | datadir = path.join(prefix, 'share') 9 | desktop_database_dir = path.join(datadir, 'applications') 10 | 11 | if not environ.get('DESTDIR'): 12 | print('Compiling gsettings schemas...') 13 | subprocess.call(['glib-compile-schemas', schemadir]) 14 | print('Updating desktop database...') 15 | subprocess.call(['update-desktop-database', '-q', desktop_database_dir]) 16 | print('Updating icon cache...') 17 | subprocess.call(['gtk-update-icon-cache', '-qtf', path.join(datadir, 'icons', 'hicolor')]) 18 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | fr 2 | tr 3 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- 1 | src/Logic/TimeSpan.vala 2 | src/Application.vala 3 | src/MainWindow.vala 4 | -------------------------------------------------------------------------------- /po/com.github.parnold-x.timer.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.parnold-x.timer package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: com.github.parnold-x.timer\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2019-11-27 08:01+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=CHARSET\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 20 | 21 | #: src/Logic/TimeSpan.vala:83 22 | #, c-format 23 | msgid "%d day" 24 | msgid_plural "%d days" 25 | msgstr[0] "" 26 | msgstr[1] "" 27 | 28 | #: src/Logic/TimeSpan.vala:87 29 | #, c-format 30 | msgid "%d hour" 31 | msgid_plural "%d hours" 32 | msgstr[0] "" 33 | msgstr[1] "" 34 | 35 | #: src/Logic/TimeSpan.vala:91 36 | #, c-format 37 | msgid "%d minute" 38 | msgid_plural "%d minutes" 39 | msgstr[0] "" 40 | msgstr[1] "" 41 | 42 | #: src/Logic/TimeSpan.vala:95 43 | #, c-format 44 | msgid "%d second" 45 | msgid_plural "%d seconds" 46 | msgstr[0] "" 47 | msgstr[1] "" 48 | 49 | #: src/Logic/TimeSpan.vala:99 50 | msgid "ago" 51 | msgstr "" 52 | 53 | #: src/Application.vala:22 src/MainWindow.vala:33 54 | msgid "Timer" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:109 58 | #, c-format 59 | msgid "%s finished" 60 | msgstr "" 61 | 62 | #: src/MainWindow.vala:129 63 | msgid "New Timer" 64 | msgstr "" 65 | 66 | #: src/MainWindow.vala:141 67 | msgid "Always on top" 68 | msgstr "" 69 | 70 | #: src/MainWindow.vala:151 71 | msgid "Beep sound" 72 | msgstr "" 73 | -------------------------------------------------------------------------------- /po/extra/LINGUAS: -------------------------------------------------------------------------------- 1 | fr 2 | tr 3 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- 1 | data/com.github.parnold-x.timer.appdata.xml.in 2 | data/com.github.parnold-x.timer.desktop.in 3 | -------------------------------------------------------------------------------- /po/extra/extra.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: extra\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2019-11-27 08:01+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=CHARSET\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: data/com.github.parnold-x.timer.appdata.xml.in:7 21 | #: data/com.github.parnold-x.timer.desktop.in:4 22 | #: data/com.github.parnold-x.timer.desktop.in:6 23 | msgid "Timer" 24 | msgstr "" 25 | 26 | #: data/com.github.parnold-x.timer.appdata.xml.in:8 27 | #: data/com.github.parnold-x.timer.desktop.in:5 28 | msgid "The ultimate tea timer" 29 | msgstr "" 30 | 31 | #: data/com.github.parnold-x.timer.appdata.xml.in:10 32 | msgid "The ultimate tea timer you searched for." 33 | msgstr "" 34 | 35 | #: data/com.github.parnold-x.timer.appdata.xml.in:12 36 | msgid "" 37 | "Start a timer with natural language input like e.g. 5 minutes 15 seconds or " 38 | "5m3s or just 5 for 5 minutes" 39 | msgstr "" 40 | 41 | #: data/com.github.parnold-x.timer.appdata.xml.in:13 42 | msgid "You can assign a title to your timer by double clicking" 43 | msgstr "" 44 | 45 | #: data/com.github.parnold-x.timer.appdata.xml.in:14 46 | msgid "Various color options to choose from" 47 | msgstr "" 48 | 49 | #: data/com.github.parnold-x.timer.appdata.xml.in:15 50 | msgid "Command line options available, see --help for more information" 51 | msgstr "" 52 | 53 | #: data/com.github.parnold-x.timer.appdata.xml.in:26 54 | msgid "Peter Arnold" 55 | msgstr "" 56 | 57 | #: data/com.github.parnold-x.timer.appdata.xml.in:36 58 | msgid "Release for Juno" 59 | msgstr "" 60 | 61 | #: data/com.github.parnold-x.timer.appdata.xml.in:41 62 | msgid "" 63 | "This release adds float parsing. So now you can also enter e.g. 3.5 for 3 " 64 | "minutes and 30 seconds" 65 | msgstr "" 66 | 67 | #: data/com.github.parnold-x.timer.desktop.in:9 68 | msgid "com.github.parnold-x.timer" 69 | msgstr "" 70 | 71 | #: data/com.github.parnold-x.timer.desktop.in:12 72 | msgid "Timer;TeaTimer;Countdown;Alarm;" 73 | msgstr "" 74 | -------------------------------------------------------------------------------- /po/extra/fr.po: -------------------------------------------------------------------------------- 1 | # French translations for extra package. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Nathan Bonnemains (@NathanBnm), 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-27 08:02+0100\n" 11 | "PO-Revision-Date: 2019-11-27 08:02+0100\n" 12 | "Last-Translator: Nathan Bonnemains (@NathanBnm)\n" 13 | "Language-Team: none\n" 14 | "Language: fr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 19 | 20 | #: data/com.github.parnold-x.timer.appdata.xml.in:7 21 | #: data/com.github.parnold-x.timer.desktop.in:4 22 | #: data/com.github.parnold-x.timer.desktop.in:6 23 | msgid "Timer" 24 | msgstr "Minuteur" 25 | 26 | #: data/com.github.parnold-x.timer.appdata.xml.in:8 27 | #: data/com.github.parnold-x.timer.desktop.in:5 28 | msgid "The ultimate tea timer" 29 | msgstr "Le minuteur idéal pour le thé" 30 | 31 | #: data/com.github.parnold-x.timer.appdata.xml.in:10 32 | msgid "The ultimate tea timer you searched for." 33 | msgstr "Le minuteur idéal pour le thé que vous cherchiez." 34 | 35 | #: data/com.github.parnold-x.timer.appdata.xml.in:12 36 | msgid "" 37 | "Start a timer with natural language input like e.g. 5 minutes 15 seconds or " 38 | "5m3s or just 5 for 5 minutes" 39 | msgstr "" 40 | "Démarrez un minuteur avec une entrée en langage naturel, par ex. 5 minutes 15 secondes ou" 41 | "5m3s ou seulement 5 pour 5 minutes" 42 | 43 | #: data/com.github.parnold-x.timer.appdata.xml.in:13 44 | msgid "You can assign a title to your timer by double clicking" 45 | msgstr "Vous pouvez définir un titre à votre minuteur en double-cliquant" 46 | 47 | #: data/com.github.parnold-x.timer.appdata.xml.in:14 48 | msgid "Various color options to choose from" 49 | msgstr "Différentes options de couleurs au choix" 50 | 51 | #: data/com.github.parnold-x.timer.appdata.xml.in:15 52 | msgid "Command line options available, see --help for more information" 53 | msgstr "Options en ligne de commande disponibles, voir --help pour plus d'informations" 54 | 55 | #: data/com.github.parnold-x.timer.appdata.xml.in:26 56 | msgid "Peter Arnold" 57 | msgstr "Peter Arnold" 58 | 59 | #: data/com.github.parnold-x.timer.appdata.xml.in:36 60 | msgid "Release for Juno" 61 | msgstr "Version pour Juno" 62 | 63 | #: data/com.github.parnold-x.timer.appdata.xml.in:41 64 | msgid "" 65 | "This release adds float parsing. So now you can also enter e.g. 3.5 for 3 " 66 | "minutes and 30 seconds" 67 | msgstr "" 68 | "Cette version ajoute l'interprétation des nombres à virgule de façon à ce que vous puissiez " 69 | "entrer par ex. 3.5 pour 3 minutes et 30 secondes" 70 | 71 | #: data/com.github.parnold-x.timer.desktop.in:9 72 | msgid "com.github.parnold-x.timer" 73 | msgstr "com.github.parnold-x.timer" 74 | 75 | #: data/com.github.parnold-x.timer.desktop.in:12 76 | msgid "Timer;TeaTimer;Countdown;Alarm;" 77 | msgstr "Minuteur;Minuteur pour le thé;Compteur;Alarme;" 78 | -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('extra', 2 | args: [ 3 | '--directory=' + meson.source_root(), 4 | '--from-code=UTF-8' 5 | ], 6 | preset: 'glib', 7 | install: false 8 | ) 9 | -------------------------------------------------------------------------------- /po/extra/tr.po: -------------------------------------------------------------------------------- 1 | # Turkish translation for Timer 2 | # Copyright (C) 2019 Timer'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the Timer package. 4 | # Timer: com.github.parnold-x.timer 5 | # 6 | # Sabri Ünal , 2019. 7 | # 8 | msgid "" 9 | msgstr "" 10 | "Project-Id-Version: \n" 11 | "Report-Msgid-Bugs-To: \n" 12 | "POT-Creation-Date: 2019-11-27 08:01+0100\n" 13 | "PO-Revision-Date: \n" 14 | "Last-Translator: Sabri Ünal \n" 15 | "Language-Team: Türkçe \n" 16 | "Language: tr\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Plural-Forms: nplurals=1; plural=0;\n" 21 | "X-Generator: Poedit 2.0.6\n" 22 | 23 | #: data/com.github.parnold-x.timer.appdata.xml.in:7 24 | #: data/com.github.parnold-x.timer.desktop.in:4 25 | #: data/com.github.parnold-x.timer.desktop.in:6 26 | msgid "Timer" 27 | msgstr "Zamanlayıcı" 28 | 29 | # Serbest çeviri yapıldı 30 | #: data/com.github.parnold-x.timer.appdata.xml.in:8 31 | #: data/com.github.parnold-x.timer.desktop.in:5 32 | msgid "The ultimate tea timer" 33 | msgstr "Muhteşem çay zamanlayıcı" 34 | 35 | # Serbest çeviri yapıldı 36 | #: data/com.github.parnold-x.timer.appdata.xml.in:10 37 | msgid "The ultimate tea timer you searched for." 38 | msgstr "Arayıpta bulamadığınız muhteşem çay zamanlayıcı." 39 | 40 | #: data/com.github.parnold-x.timer.appdata.xml.in:12 41 | msgid "" 42 | "Start a timer with natural language input like e.g. 5 minutes 15 seconds or " 43 | "5m3s or just 5 for 5 minutes" 44 | msgstr "" 45 | "Doğal dil girişi ile bir zamanlayıcı başlatabilirsiniz. Örneğin 5 dakika 15 " 46 | "saniye veya 5dk3sn veya 5 dakika için sadece 5 yazabilirsiniz" 47 | 48 | #: data/com.github.parnold-x.timer.appdata.xml.in:13 49 | msgid "You can assign a title to your timer by double clicking" 50 | msgstr "Zamanlayıcınıza çift tıklatarak bir başlık atayabilirsiniz" 51 | 52 | #: data/com.github.parnold-x.timer.appdata.xml.in:14 53 | msgid "Various color options to choose from" 54 | msgstr "Aralarından seçim yapabileceğiniz çeşitli renk seçenekleri eklendi" 55 | 56 | #: data/com.github.parnold-x.timer.appdata.xml.in:15 57 | msgid "Command line options available, see --help for more information" 58 | msgstr "" 59 | "Komut satırı seçenekleri artık kullanılabilir. Detaylar için --help komutunu " 60 | "kullanabilirsiniz" 61 | 62 | # Geliştirici adı, çevirmeyin 63 | #: data/com.github.parnold-x.timer.appdata.xml.in:26 64 | msgid "Peter Arnold" 65 | msgstr "Peter Arnold" 66 | 67 | #: data/com.github.parnold-x.timer.appdata.xml.in:36 68 | msgid "Release for Juno" 69 | msgstr "Juno için yayınlandı" 70 | 71 | # Serbest çeviri yapıldı 72 | #: data/com.github.parnold-x.timer.appdata.xml.in:41 73 | msgid "" 74 | "This release adds float parsing. So now you can also enter e.g. 3.5 for 3 " 75 | "minutes and 30 seconds" 76 | msgstr "" 77 | "Bu sürüm kayan nokta ayrıştırması ekler. Yani artık 3.5 dakika veya 3 dakika " 78 | "30 saniye gibi değerler ekleyebilirsiniz" 79 | 80 | # Uygulama kimliği, çevirmeyin 81 | #: data/com.github.parnold-x.timer.desktop.in:9 82 | msgid "com.github.parnold-x.timer" 83 | msgstr "com.github.parnold-x.timer" 84 | 85 | #: data/com.github.parnold-x.timer.desktop.in:12 86 | msgid "Timer;TeaTimer;Countdown;Alarm;" 87 | msgstr "Zamanlayıcı;Çay Zamanlayıcı;Kronometre;Alarm;" 88 | -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- 1 | # French translations for com.github.parnold-x.timer package. 2 | # Copyright (C) 2019 THE com.github.parnold-x.timer'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.parnold-x.timer package. 4 | # Nathan Bonnemains (@NathanBnm), 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.parnold-x.timer\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-27 08:02+0100\n" 11 | "PO-Revision-Date: 2019-11-27 08:02+0100\n" 12 | "Last-Translator: Nathan Bonnemains (@NathanBnm)\n" 13 | "Language-Team: none\n" 14 | "Language: fr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 19 | 20 | #: src/Logic/TimeSpan.vala:83 21 | #, c-format 22 | msgid "%d day" 23 | msgid_plural "%d days" 24 | msgstr[0] "%d jour" 25 | msgstr[1] "%d jours" 26 | 27 | #: src/Logic/TimeSpan.vala:87 28 | #, c-format 29 | msgid "%d hour" 30 | msgid_plural "%d hours" 31 | msgstr[0] "%d heure" 32 | msgstr[1] "%d heures" 33 | 34 | #: src/Logic/TimeSpan.vala:91 35 | #, c-format 36 | msgid "%d minute" 37 | msgid_plural "%d minutes" 38 | msgstr[0] "%d minute" 39 | msgstr[1] "%d minutes" 40 | 41 | #: src/Logic/TimeSpan.vala:95 42 | #, c-format 43 | msgid "%d second" 44 | msgid_plural "%d seconds" 45 | msgstr[0] "%d seconde" 46 | msgstr[1] "%d secondes" 47 | 48 | #: src/Logic/TimeSpan.vala:99 49 | msgid "ago" 50 | msgstr "plus tôt" 51 | 52 | #: src/Application.vala:22 src/MainWindow.vala:33 53 | msgid "Timer" 54 | msgstr "Minuteur" 55 | 56 | #: src/MainWindow.vala:109 57 | #, c-format 58 | msgid "%s finished" 59 | msgstr "%s terminé" 60 | 61 | #: src/MainWindow.vala:129 62 | msgid "New Timer" 63 | msgstr "Nouveau minuteur" 64 | 65 | #: src/MainWindow.vala:141 66 | msgid "Always on top" 67 | msgstr "Toujours au premier plan" 68 | 69 | #: src/MainWindow.vala:151 70 | msgid "Beep sound" 71 | msgstr "Bip sonore" 72 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name(), 2 | args: [ 3 | '--directory=' + meson.source_root(), 4 | '--from-code=UTF-8' 5 | ], 6 | preset: 'glib' 7 | ) 8 | 9 | subdir('extra') 10 | -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- 1 | # Turkish translation for Timer 2 | # Copyright (C) 2019 Timer'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the Timer package. 4 | # Timer: com.github.parnold-x.timer 5 | # 6 | # Sabri Ünal , 2019. 7 | # 8 | msgid "" 9 | msgstr "" 10 | "Project-Id-Version: \n" 11 | "Report-Msgid-Bugs-To: \n" 12 | "POT-Creation-Date: 2019-11-27 08:01+0100\n" 13 | "PO-Revision-Date: \n" 14 | "Last-Translator: Sabri Ünal \n" 15 | "Language-Team: Türkçe \n" 16 | "Language: tr\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Plural-Forms: nplurals=1; plural=0;\n" 21 | "X-Generator: Poedit 2.0.6\n" 22 | 23 | #: src/Logic/TimeSpan.vala:83 24 | #, c-format 25 | msgid "%d day" 26 | msgid_plural "%d days" 27 | msgstr[0] "%d gün" 28 | 29 | #: src/Logic/TimeSpan.vala:87 30 | #, c-format 31 | msgid "%d hour" 32 | msgid_plural "%d hours" 33 | msgstr[0] "%d saat" 34 | 35 | #: src/Logic/TimeSpan.vala:91 36 | #, c-format 37 | msgid "%d minute" 38 | msgid_plural "%d minutes" 39 | msgstr[0] "%d dakika" 40 | 41 | #: src/Logic/TimeSpan.vala:95 42 | #, c-format 43 | msgid "%d second" 44 | msgid_plural "%d seconds" 45 | msgstr[0] "%d saniye" 46 | 47 | #: src/Logic/TimeSpan.vala:99 48 | msgid "ago" 49 | msgstr "önce" 50 | 51 | #: src/Application.vala:22 src/MainWindow.vala:33 52 | msgid "Timer" 53 | msgstr "Zamanlayıcı" 54 | 55 | #: src/MainWindow.vala:109 56 | #, c-format 57 | msgid "%s finished" 58 | msgstr "%s tamamlandı" 59 | 60 | #: src/MainWindow.vala:129 61 | msgid "New Timer" 62 | msgstr "Yeni Zamanlayıcı" 63 | 64 | #: src/MainWindow.vala:141 65 | msgid "Always on top" 66 | msgstr "Her zaman üstte" 67 | 68 | #: src/MainWindow.vala:151 69 | msgid "Beep sound" 70 | msgstr "Bip sesi" 71 | -------------------------------------------------------------------------------- /src/Application.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2017 Peter Arnold 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 | * Boston, MA 02111-1307, USA. 18 | */ 19 | 20 | namespace Timer { 21 | public class TimerApp : Gtk.Application { 22 | public const string STANDARD_TIMER_NAME = _("Timer"); 23 | 24 | private static string? title = null; 25 | 26 | public TimerApp () { 27 | Object (application_id: "com.github.parnold-x.timer", 28 | flags: ApplicationFlags.HANDLES_COMMAND_LINE); 29 | } 30 | 31 | public override void activate () { 32 | 33 | } 34 | 35 | 36 | public override int command_line (ApplicationCommandLine command_line) { 37 | this.hold (); 38 | int res = _command_line (command_line); 39 | this.release (); 40 | return res; 41 | } 42 | 43 | public int _command_line (ApplicationCommandLine command_line) { 44 | OptionEntry[] options = new OptionEntry[1]; 45 | options[0] = { "title", 0, 0, OptionArg.STRING, ref title, "Set the title of the Timer", "" }; 46 | string[] args = command_line.get_arguments (); 47 | 48 | string timer = ""; 49 | string*[] _args = new string[args.length]; 50 | for (int i = 0; i < args.length; i++) { 51 | if (i > 0 && !args[i].has_prefix ("-")){ 52 | timer += args[i] + " "; 53 | } else if (args[i] == "--help" || args[i] == "-help" || args[i] == "-h") { 54 | help (); 55 | return 0; 56 | } 57 | _args[i] = args[i]; 58 | } 59 | try { 60 | var opt_context = new OptionContext ("[<input>]"); 61 | opt_context.add_main_entries (options, null); 62 | unowned string[] tmp = _args; 63 | opt_context.parse (ref tmp); 64 | } catch (OptionError e) { 65 | command_line.print ("error: %s\n", e.message); 66 | help (); 67 | return 0; 68 | } 69 | print ("\n"+timer+"\n"); 70 | new MainWindow (this, (int) get_windows ().length (), title, timer); 71 | title = null; 72 | return 0; 73 | } 74 | 75 | private void help () { 76 | print ("Usage: %s [OPTION] [<input>]\n",application_id); 77 | print ("The ultimate tea timer.\n\n"); 78 | print ("\t<input>\n"); 79 | print ("\t\tInput to start the timer.\n\n"); 80 | print ("\t\tFor example:\n"); 81 | print ("\t\t5\t\t\ttimer for 5 minutes\n"); 82 | print ("\t\t5 minutes\t\ttimer for 5 minutes\n"); 83 | print ("\t\t5 minutes 15 seconds\ttimer for 5 minutes 15 seconds\n"); 84 | print ("\t\t2 hours 15 minutes\ttimer for 2 hours 15 minutes\n"); 85 | print ("\t\t2m15s\t\t\ttimer for 2 minutes 15 seconds\n"); 86 | print ("\n\n"); 87 | print ("Options:\n"); 88 | print (" --title=<title>\n"); 89 | print ("\t\tSet the title of the Timer.\n\n"); 90 | } 91 | 92 | public static void main (string[] args) { 93 | // Initializing GStreamer 94 | Gst.init (ref args); 95 | var app = new Timer.TimerApp (); 96 | app.run (args); 97 | } 98 | } 99 | } -------------------------------------------------------------------------------- /src/ColorChooser.vala: -------------------------------------------------------------------------------- 1 | namespace Timer { 2 | private class ColorChooser : Gtk.MenuItem { 3 | private new bool has_focus; 4 | public signal void color_changed (Color color); 5 | private int diameter = 16; 6 | private Color[] colors = Color.all (); 7 | 8 | public ColorChooser () { 9 | set_size_request (8*diameter+14*6-4, 30); 10 | 11 | button_press_event.connect (button_pressed); 12 | draw.connect (on_draw); 13 | 14 | select.connect (() => { 15 | has_focus = true; 16 | }); 17 | 18 | deselect.connect (() => { 19 | has_focus = false; 20 | }); 21 | } 22 | 23 | private bool button_pressed (Gdk.EventButton event) { 24 | int x00 = 10; 25 | int x0 = diameter + 6; 26 | 27 | for (int i = 0; i < colors.length; i++) { 28 | if (event.x >= x00+x0 * (i+1) - 3 && event.x <= x00+x0 * (i+1) + diameter + 3) { 29 | color_changed (colors[i]); 30 | break; 31 | } 32 | } 33 | return true; 34 | } 35 | 36 | protected bool on_draw (Cairo.Context cr) { 37 | int x00 = 10; 38 | int y0 = diameter; 39 | int x0 = diameter + 6; 40 | 41 | for (int i = 0; i < colors.length; i++) { 42 | cr.stroke (); 43 | cr.arc (x00+x0*(i+1) + 6, y0, diameter / 2, 0, 2*Math.PI); 44 | Gdk.RGBA rgba = Gdk.RGBA (); 45 | 46 | rgba.parse (colors[i].get_secondary_color ()); 47 | Gdk.cairo_set_source_rgba (cr, rgba); 48 | cr.fill (); 49 | cr.arc (x00+x0*(i+1) + 6, y0, diameter / 2, 0, 2*Math.PI); 50 | // cr.set_source_rgba (0,0,0,0.5); 51 | Gdk.RGBA rgba2 = Gdk.RGBA (); 52 | rgba2.parse (colors[i].get_primary_color ()); 53 | Gdk.cairo_set_source_rgba (cr, rgba2); 54 | cr.stroke (); 55 | } 56 | 57 | return true; 58 | } 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /src/ColorManager.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2017 Peter Arnold 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 | * Boston, MA 02111-1307, USA. 18 | */ 19 | 20 | namespace Timer { 21 | public enum Color { 22 | STRAWBERRY, 23 | ORANGE, 24 | BANANA, 25 | LIME, 26 | BLUEBERRY, 27 | GRAPE, 28 | SILVER, 29 | SLATE, 30 | BLACK; 31 | 32 | public static Color get (string label) { 33 | foreach (Color c in Color.all ()) { 34 | if (c.get_label () == label) { 35 | return c; 36 | } 37 | } 38 | assert_not_reached(); 39 | } 40 | 41 | public string get_label () { 42 | switch (this) { 43 | case STRAWBERRY: 44 | return "Strawberry"; 45 | case ORANGE: 46 | return "Orange"; 47 | case BANANA: 48 | return "Banana"; 49 | case LIME: 50 | return "Lime"; 51 | case BLUEBERRY: 52 | return "Blueberry"; 53 | case GRAPE: 54 | return "Grape"; 55 | case SILVER: 56 | return "Silver"; 57 | case SLATE: 58 | return "Slate"; 59 | case BLACK: 60 | return "Black"; 61 | default: 62 | assert_not_reached(); 63 | } 64 | } 65 | 66 | public string get_primary_color () { 67 | switch (this) { 68 | case STRAWBERRY: 69 | return "#ed5353"; 70 | case ORANGE: 71 | return "#ffa154"; 72 | case BANANA: 73 | return "#f9c440"; 74 | case LIME: 75 | return "#9bdb4d"; 76 | case BLUEBERRY: 77 | return "#64baff"; 78 | case GRAPE: 79 | return "#ad65d6"; 80 | case SILVER: 81 | return "#abacae"; 82 | case SLATE: 83 | return "#485a6c"; 84 | case BLACK: 85 | return "#4d4d4d"; 86 | default: 87 | assert_not_reached(); 88 | } 89 | } 90 | 91 | public string get_secondary_color () { 92 | switch (this) { 93 | case STRAWBERRY: 94 | return "#ff8c82"; 95 | case ORANGE: 96 | return "#ffc27d"; 97 | case BANANA: 98 | return "#ffe16b"; 99 | case LIME: 100 | return "#d1ff82"; 101 | case BLUEBERRY: 102 | return "#8cd5ff"; 103 | case GRAPE: 104 | return "#e29ffc"; 105 | case SILVER: 106 | return "#d4d4d4"; 107 | case SLATE: 108 | return "#667885"; 109 | case BLACK: 110 | return "#666666"; 111 | default: 112 | assert_not_reached(); 113 | } 114 | } 115 | 116 | public static Color[] all() { 117 | return { STRAWBERRY, 118 | ORANGE, 119 | BANANA, 120 | LIME, 121 | BLUEBERRY, 122 | GRAPE, 123 | SILVER, 124 | SLATE, 125 | BLACK}; 126 | } 127 | } 128 | public class ColorManager : GLib.Object { 129 | public const string STARTUP_CSS = """ 130 | @define-color colorPrimary%d %s; 131 | @define-color colorAccent%d %s; 132 | @define-color textColorPrimary #1a1a1a; 133 | 134 | .w-%d { 135 | background-color: @colorPrimary%d; 136 | } 137 | .w-%d .titlebar { 138 | background-color: @colorPrimary%d; 139 | padding: 1px 3px; 140 | box-shadow: none; 141 | } 142 | .w-%d .titlebar entry { 143 | background: none; 144 | border: none; 145 | box-shadow: none; 146 | } 147 | .w-%d .titlebar entry:focus { 148 | border-bottom: 1px solid @base_color; 149 | } 150 | .entry-%d { 151 | font-size: 18px; 152 | } 153 | 154 | .entry-%d:focus { 155 | border-color: alpha (@colorAccent%d, 0.8); 156 | box-shadow: 157 | inset 0 0 0 1px alpha (@colorAccent%d, 0.23), 158 | 0 1px 0 0 alpha (@bg_highlight_color, 0.3); 159 | transition: all 200ms ease-in; 160 | } 161 | .entry-%d progress, 162 | .entry-%d progress:focus, 163 | .entry-%d.progressbar, 164 | .entry-%d.progressbar:focus { 165 | background-image: 166 | linear-gradient( 167 | to bottom, 168 | mix( 169 | @colorAccent%d, 170 | @base_color, 171 | 0.4 172 | ), 173 | mix( 174 | @colorAccent%d, 175 | @base_color, 176 | 0.5 177 | ) 178 | ); 179 | border: 1px solid @colorAccent%d; 180 | border-right: 0; 181 | border-top-right-radius: 0; 182 | border-bottom-right-radius: 0; 183 | box-shadow: 184 | inset 0 1px 0 0 alpha (@inset_dark_color, 0.7), 185 | inset 0 0 0 1px alpha (@inset_dark_color, 0.3); 186 | } 187 | .entry-%d:selected { 188 | background-color: shade (@colorAccent%d, 0.8); 189 | color: @text_color; 190 | } 191 | 192 | .entry-%d:selected:focus { 193 | background-color: alpha (@colorAccent%d, 0.9); 194 | color: @text_color; 195 | text-shadow: none; 196 | } 197 | """; 198 | 199 | private const string CHANGE_COLOR = """ 200 | @define-color colorPrimary%d %s; 201 | @define-color colorAccent%d %s; 202 | 203 | .w-%d, 204 | .w-%d .titlebar, 205 | .entry-%d progress { 206 | transition: all 600ms ease-in-out; 207 | } 208 | """; 209 | 210 | public static int font_size = 18; 211 | private const string FONT_CHANGE = """ 212 | .entry-%d { 213 | font-size: %dpx; 214 | } 215 | """; 216 | 217 | public static void startup (Timer.Color color, int uid) { 218 | if (uid > 0) { 219 | var colorarray = Color.all (); 220 | for (int i = 0; i < colorarray.length; i++) { 221 | if (colorarray[i] == color) { 222 | color = colorarray[(i+uid)%colorarray.length]; 223 | break; 224 | } 225 | } 226 | } 227 | try { 228 | var provider = new Gtk.CssProvider (); 229 | provider.load_from_data (ColorManager.STARTUP_CSS.printf (uid, color.get_primary_color (), 230 | uid, color.get_secondary_color (), uid, uid, uid, uid, uid, uid, uid, uid, uid, uid, uid, uid, 231 | uid, uid, uid, uid, uid, uid, uid, uid, uid)); 232 | Gtk.StyleContext.add_provider_for_screen (Gdk.Screen.get_default (), provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); 233 | } catch (GLib.Error e) { 234 | GLib.error ("Failed to load css: %s", e.message); 235 | } 236 | } 237 | 238 | public static void change_color (Timer.Color color, int uid) { 239 | try { 240 | var provider = new Gtk.CssProvider (); 241 | provider.load_from_data (ColorManager.CHANGE_COLOR.printf (uid, color.get_primary_color (), uid, color.get_secondary_color (), uid, uid, uid)); 242 | Gtk.StyleContext.add_provider_for_screen (Gdk.Screen.get_default (), provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); 243 | } catch (GLib.Error e) { 244 | GLib.error ("Failed to load css: %s", e.message); 245 | } 246 | } 247 | 248 | public static void change_font (int size, int uid) { 249 | font_size = size; 250 | try { 251 | var provider = new Gtk.CssProvider (); 252 | provider.load_from_data (ColorManager.FONT_CHANGE.printf (uid, font_size)); 253 | Gtk.StyleContext.add_provider_for_screen (Gdk.Screen.get_default (), provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); 254 | } catch (GLib.Error e) { 255 | GLib.error ("Failed to load css: %s", e.message); 256 | } 257 | } 258 | 259 | public static void beep (Settings setting, int uid) { 260 | if (setting.get_boolean ("sound-beep")) 261 | play_beep_sound (); 262 | if (!setting.get_boolean ("flash-beep")) 263 | return; 264 | // flash red to the sound 265 | highlight_red (uid); 266 | unhighlight_red (uid); 267 | Timeout.add (210, ()=> { 268 | highlight_red (uid); 269 | unhighlight_red (uid); 270 | return false; 271 | }); 272 | Timeout.add (410, ()=> { 273 | highlight_red (uid); 274 | unhighlight_red (uid); 275 | return false; 276 | }); 277 | } 278 | 279 | private static void play_beep_sound () { 280 | dynamic Gst.Element playbin = Gst.ElementFactory.make ("playbin", "play"); 281 | var temp_file = File.new_for_path (Environment.get_tmp_dir ()+"/parnold-x.teatimer.beep.wav"); 282 | if (!temp_file.query_exists ()) { 283 | var file = File.new_for_uri ("resource:///com/github/parnold-x/teatimer/beep.wav"); 284 | try { 285 | file.copy (temp_file, 0); 286 | } catch (GLib.Error e) { 287 | GLib.warning ("Failed to extract beep: %s", e.message); 288 | } 289 | } 290 | playbin.uri = temp_file.get_uri (); 291 | playbin.set_state (Gst.State.PLAYING); 292 | } 293 | 294 | private static void highlight_red (int uid) { 295 | try { 296 | var provider = new Gtk.CssProvider (); 297 | provider.load_from_data (""" 298 | .w-%d { 299 | background-color:red; 300 | }""".printf (uid)); 301 | Gtk.StyleContext.add_provider_for_screen (Gdk.Screen.get_default (), provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); 302 | } catch (GLib.Error e) { 303 | GLib.error ("Failed to load css: %s", e.message); 304 | } 305 | } 306 | 307 | private static void unhighlight_red (int uid) { 308 | Timeout.add (90, ()=> { 309 | try { 310 | var provider = new Gtk.CssProvider (); 311 | provider.load_from_data (""" 312 | .w-%d { 313 | background-color:@colorPrimary%d; 314 | }""".printf (uid, uid)); 315 | Gtk.StyleContext.add_provider_for_screen (Gdk.Screen.get_default (), provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); 316 | } catch (GLib.Error e) { 317 | GLib.error ("Failed to load css: %s", e.message); 318 | } 319 | return false; 320 | }); 321 | } 322 | 323 | } 324 | } -------------------------------------------------------------------------------- /src/Logic/TimeSpan.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2017 Peter Arnold 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 | * Boston, MA 02111-1307, USA. 18 | */ 19 | 20 | namespace Timer { 21 | public class TimeSpan : GLib.Object { 22 | public int days { get; set; } 23 | 24 | public int hours { get; set; } 25 | 26 | public int minutes { get; set; } 27 | 28 | public int seconds { get; set; } 29 | 30 | bool expired = false; 31 | 32 | public TimeSpan (double time_in_ms = 0.0) { 33 | days = (int) (time_in_ms / GLib.TimeSpan.DAY); 34 | time_in_ms -= days * GLib.TimeSpan.DAY; 35 | hours = (int) (time_in_ms / GLib.TimeSpan.HOUR); 36 | time_in_ms -= hours * GLib.TimeSpan.HOUR; 37 | minutes = (int) (time_in_ms / GLib.TimeSpan.MINUTE); 38 | time_in_ms -= minutes * GLib.TimeSpan.MINUTE; 39 | seconds = (int) (time_in_ms / GLib.TimeSpan.SECOND); 40 | } 41 | 42 | public TimeSpan.from_glib (GLib.TimeSpan glib_time_span) { 43 | expired = glib_time_span < -120; // some processing time 44 | var time_seconds = (int) GLib.Math.ceil (((double)glib_time_span) / GLib.TimeSpan.SECOND); 45 | var time_minutes = (int) (glib_time_span / GLib.TimeSpan.MINUTE); 46 | if (time_seconds != 0 && time_seconds % 60 == 0) { 47 | time_minutes += 1; 48 | } 49 | var time_hours = (int) (glib_time_span / GLib.TimeSpan.HOUR); 50 | if ((time_seconds != 0 || time_minutes != 0) && time_seconds % 60 == 0 && time_minutes % 60 == 0) { 51 | time_hours += 1; 52 | } 53 | var time_days = (int) (glib_time_span / GLib.TimeSpan.DAY); 54 | if ((time_seconds != 0 || time_minutes != 0 || time_hours != 0) && time_seconds % 60 == 0 && time_minutes % 60 == 0 && time_hours % 24 == 0) { 55 | time_days += 1; 56 | } 57 | seconds = (time_seconds % 60).abs (); 58 | minutes = (time_minutes % 60).abs (); 59 | hours = (time_hours % 24).abs (); 60 | days = (time_days).abs (); 61 | } 62 | 63 | public DateTime get_end_time (DateTime start_time) { 64 | DateTime end_time = start_time; 65 | end_time = end_time.add_seconds (seconds); 66 | end_time = end_time.add_minutes (minutes); 67 | end_time = end_time.add_hours (hours); 68 | end_time = end_time.add_days (days); 69 | return end_time; 70 | } 71 | 72 | public bool match () { 73 | return days == 0 && hours == 0 && minutes == 0 && seconds == 0; 74 | } 75 | 76 | public bool is_expired () { 77 | return expired; 78 | } 79 | 80 | public string to_string () { 81 | string time = ""; 82 | if (days != 0) { 83 | time += ngettext ("%d day", "%d days", days).printf (days); 84 | time += " "; 85 | } 86 | if (hours != 0) { 87 | time += ngettext ("%d hour", "%d hours", hours).printf (hours); 88 | time += " "; 89 | } 90 | if (minutes != 0) { 91 | time += ngettext ("%d minute", "%d minutes", minutes).printf (minutes); 92 | time += " "; 93 | } 94 | if (seconds != 0) { 95 | time += ngettext ("%d second", "%d seconds", seconds).printf (seconds); 96 | time += " "; 97 | } 98 | if (expired && time.length > 0) { 99 | time += _("ago"); 100 | } 101 | return time; 102 | } 103 | } 104 | } 105 | -------------------------------------------------------------------------------- /src/Logic/TimerManager.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2017 Peter Arnold 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 | * Boston, MA 02111-1307, USA. 18 | */ 19 | 20 | namespace Timer { 21 | public class TimerManager : GLib.Object { 22 | public TimerObject? actual_timer { get; private set; } 23 | public bool stop_notify { get; set; } 24 | 25 | public signal void new_timer_set (TimerObject timer); 26 | public signal void tick (TimerObject timer); 27 | public signal void timer_finished (TimerObject timer); 28 | 29 | public bool is_timer_set () { 30 | return actual_timer != null; 31 | } 32 | 33 | public void new_timer (Timer.TimeSpan timespan) { 34 | if (actual_timer != null) { 35 | actual_timer.stop (); 36 | } 37 | actual_timer = new TimerObject (timespan); 38 | actual_timer.tick.connect ((t) => { 39 | tick (t); 40 | }); 41 | actual_timer.match.connect ((t) => { 42 | timer_finished (t); 43 | }); 44 | new_timer_set (actual_timer); 45 | } 46 | } 47 | } -------------------------------------------------------------------------------- /src/Logic/TimerObject.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2017 Peter Arnold 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 | * Boston, MA 02111-1307, USA. 18 | */ 19 | 20 | namespace Timer { 21 | public class TimerObject : GLib.Object { 22 | public TimeSpan timer_start_span { get; private set; } 23 | public DateTime timer_start { get; private set; } 24 | public DateTime timer_end { get; private set; } 25 | public Timer.TimeSpan time_left { get; private set; } 26 | public double time_elapsed_percentage { get; private set; } 27 | 28 | //private members 29 | private double time_span_ms; 30 | private uint tick_timer = 0; 31 | 32 | //signals 33 | public signal void tick (TimerObject timer); 34 | public signal void match (TimerObject timer); 35 | 36 | public TimerObject (Timer.TimeSpan time_span) { 37 | timer_start_span = time_span; 38 | timer_end = time_span.get_end_time (new DateTime.now_local ()); 39 | } 40 | 41 | public void start () { 42 | timer_start = new DateTime.now_local (); 43 | time_span_ms = (double) timer_end.difference (timer_start); 44 | update (); 45 | tick_timer = Timeout.add (1000, () => { 46 | update (); 47 | return true; 48 | }); 49 | } 50 | 51 | public void stop () { 52 | if (tick_timer != 0) { 53 | Source.remove (tick_timer); 54 | tick_timer = 0; 55 | } 56 | } 57 | 58 | public void update () { 59 | var time_left_glib = timer_end.difference (new DateTime.now_local ()); 60 | time_left = new Timer.TimeSpan.from_glib (time_left_glib); 61 | if (time_left.match ()) { 62 | // exact time match ring and stuff 63 | time_elapsed_percentage = 1.0; 64 | match (this); 65 | return; 66 | } 67 | time_elapsed_percentage = 1.0 - ((double)time_left_glib / time_span_ms); 68 | tick (this); 69 | } 70 | } 71 | } -------------------------------------------------------------------------------- /src/MainWindow.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2017 Peter Arnold 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 | * Boston, MA 02111-1307, USA. 18 | */ 19 | 20 | namespace Timer { 21 | 22 | public class MainWindow : Gtk.Window { 23 | private Settings settings; 24 | public int uid { get; construct set; } 25 | public string? timer_name { get; construct set; } 26 | public string timer { get; construct set; } 27 | TimerManager timer_manager; 28 | private bool is_finished; 29 | 30 | public MainWindow (Gtk.Application application, int window_id, string? name, string? t_set) { 31 | Object (application: application, 32 | icon_name: "com.github.parnold-x.timer", 33 | title: _("Timer"), 34 | resizable: false, 35 | height_request: 280, 36 | width_request: 520, 37 | uid: window_id, 38 | timer_name: name, 39 | timer: t_set); 40 | } 41 | 42 | construct { 43 | settings = new Settings ("com.github.parnold-x.timer"); 44 | ColorManager.startup (Color.get (settings.get_string ("color")), uid); 45 | get_style_context ().add_class ("w-%d".printf(uid)); 46 | 47 | var window_x = settings.get_int ("window-x"); 48 | var window_y = settings.get_int ("window-y"); 49 | 50 | if (window_x != -1 || window_y != -1) { 51 | move (window_x + 25*uid, window_y+25*uid); 52 | } 53 | 54 | var header_bar = new Gtk.HeaderBar (); 55 | header_bar.get_style_context ().add_class (Gtk.STYLE_CLASS_FLAT); 56 | header_bar.show_close_button = true; 57 | var settings_button = create_settings_menu (); 58 | header_bar.pack_end (settings_button); 59 | 60 | var title = new TitleLabel (timer_name); 61 | 62 | header_bar.set_custom_title (title); 63 | set_titlebar (header_bar); 64 | 65 | this.delete_event.connect (on_window_closing); 66 | 67 | timer_manager = new TimerManager (); 68 | var time_entry = new TimerEntry (timer_manager, uid); 69 | 70 | var box = new Gtk.Box(Gtk.Orientation.VERTICAL, 0); 71 | box.can_focus = true; 72 | button_press_event.connect ((e) => { 73 | focus (Gtk.DirectionType.UP); 74 | return false; 75 | }); 76 | 77 | box.pack_start (time_entry); 78 | add (box); 79 | show_all (); 80 | time_entry.focus (Gtk.DirectionType.UP); 81 | // set_keep_above (settings.get_boolean ("always-on-top")); 82 | time_entry.unfocus.connect (() => { 83 | focus (Gtk.DirectionType.UP); 84 | }); 85 | 86 | title.unfocus.connect (() => { 87 | time_entry.focus (Gtk.DirectionType.UP); 88 | }); 89 | 90 | var launcher = Unity.LauncherEntry.get_for_desktop_id ("com.github.parnold-x.timer.desktop"); 91 | 92 | timer_manager.new_timer_set.connect ((t) => { 93 | focus (Gtk.DirectionType.UP); 94 | if (is_finished) { 95 | title.text = title.last_title; 96 | is_finished = false; 97 | } 98 | t.start (); 99 | if (uid == 0) 100 | launcher.progress_visible = true; 101 | }); 102 | timer_manager.tick.connect ((t) => { 103 | time_entry.set_progress_fraction (t.time_elapsed_percentage); 104 | if (uid == 0) 105 | launcher.progress = t.time_elapsed_percentage; 106 | if (!timer_manager.stop_notify) 107 | time_entry.text = t.time_left.to_string (); 108 | }); 109 | timer_manager.timer_finished.connect ((t) => { 110 | time_entry.set_progress_fraction (t.time_elapsed_percentage); 111 | if (!is_finished) { 112 | title.text = _("%s finished").printf (title.text); 113 | is_finished = true; 114 | } 115 | if (!timer_manager.stop_notify) 116 | time_entry.text = title.text; 117 | set_keep_above (true); 118 | ColorManager.beep (settings, uid); 119 | set_keep_above (settings.get_boolean ("always-on-top")); 120 | if (uid == 0) 121 | launcher.progress_visible = false; 122 | }); 123 | 124 | if (time_entry.validate_timer (timer)) { 125 | time_entry.text = timer; 126 | time_entry.activate (); 127 | } 128 | } 129 | 130 | private Gtk.MenuButton create_settings_menu () { 131 | Gtk.Menu settings_menu = new Gtk.Menu(); 132 | var new_timer = new Gtk.MenuItem.with_label (_("New Timer")); 133 | new_timer.activate.connect (() => { 134 | new MainWindow (get_application (), (int) get_application ().get_windows ().length (), null, ""); 135 | }); 136 | settings_menu.add(new_timer); 137 | var color_item = new ColorChooser (); 138 | color_item.color_changed.connect ((c) => { 139 | ColorManager.change_color (c, uid); 140 | settings.set_string ("color", c.get_label ()); 141 | }); 142 | settings_menu.add(color_item); 143 | settings_menu.add (new Gtk.SeparatorMenuItem ()); 144 | var always_on_top = new Gtk.CheckMenuItem.with_label (_("Always on top")); 145 | always_on_top.active = settings.get_boolean ("always-on-top"); 146 | always_on_top.toggled.connect (() => { 147 | var state = settings.get_boolean ("always-on-top"); 148 | set_keep_above (!state); 149 | settings.set_boolean ("always-on-top",!state); 150 | always_on_top.active = !state; 151 | }); 152 | settings_menu.add (always_on_top); 153 | 154 | var beep_sound = new Gtk.CheckMenuItem.with_label (_("Beep sound")); 155 | beep_sound.active = settings.get_boolean ("sound-beep"); 156 | beep_sound.toggled.connect (() => { 157 | var state = settings.get_boolean ("sound-beep"); 158 | settings.set_boolean ("sound-beep",!state); 159 | beep_sound.active = !state; 160 | }); 161 | settings_menu.add (beep_sound); 162 | settings_menu.show_all(); 163 | 164 | var settings_button = new Gtk.MenuButton(); 165 | settings_button.image = new Gtk.Image.from_icon_name ("open-menu-symbolic", Gtk.IconSize.SMALL_TOOLBAR); 166 | settings_button.set_popup(settings_menu); 167 | 168 | return settings_button; 169 | } 170 | 171 | private bool on_window_closing () { 172 | timer_manager.actual_timer.stop (); 173 | int root_x, root_y; 174 | get_position (out root_x, out root_y); 175 | settings.set_int ("window-x", root_x); 176 | settings.set_int ("window-y", root_y); 177 | return false; 178 | } 179 | } 180 | } 181 | -------------------------------------------------------------------------------- /src/TimerEntry.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2017 Peter Arnold 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 | * Boston, MA 02111-1307, USA. 18 | */ 19 | 20 | namespace Timer { 21 | public class TimerEntry : Gtk.Entry { 22 | GLib.Regex minute_only_pattern; 23 | GLib.Regex long_form_pattern; 24 | TimerManager manager; 25 | public int uid { get; construct set; } 26 | public signal void unfocus (); 27 | 28 | public TimerEntry (TimerManager manager, int window_id) { 29 | Object (xalign: 0.5f, 30 | valign: Gtk.Align.CENTER, 31 | uid: window_id); 32 | this.manager = manager; 33 | } 34 | 35 | construct { 36 | get_style_context ().add_class ("entry-%d".printf(uid)); 37 | try { 38 | minute_only_pattern = new GLib.Regex ("""^\s*(?<minutes>\d*[.,]?\d+)\s*$""", RegexCompileFlags.JAVASCRIPT_COMPAT); 39 | long_form_pattern = new GLib.Regex ("""^\s*((?<days>\d*[.,]?\d+)\s*(d|dys?|days?))?\s*((?<hours>\d*[.,]?\d+)\s*(h|hrs?|hours?))?\s*((?<minutes>\d*[.,]?\d+)\s*(m|mins?|minutes?))?\s*((?<seconds>\d*[.,]?\d+)\s*(s|secs?|seconds|))?\s*$""", RegexCompileFlags.JAVASCRIPT_COMPAT); 40 | } catch (GLib.Error e) { 41 | GLib.error ("Regex construction: %s", e.message); 42 | } 43 | activate.connect(() => { 44 | string str = get_text (); 45 | timer_set (str); 46 | }); 47 | notify["text"].connect((e,m) => { 48 | var len = text.length; 49 | if (len < 26) { 50 | if (ColorManager.font_size < 18) { 51 | ColorManager.change_font (18, uid); 52 | } 53 | } else if (len < 30){ 54 | if (ColorManager.font_size != 17) { 55 | ColorManager.change_font (17, uid); 56 | } 57 | } else if (len < 33){ 58 | if (ColorManager.font_size != 16) { 59 | ColorManager.change_font (16, uid); 60 | } 61 | } else if (len < 36){ 62 | if (ColorManager.font_size != 15) { 63 | ColorManager.change_font (15, uid); 64 | } 65 | } else if (len < 39){ 66 | if (ColorManager.font_size != 14) { 67 | ColorManager.change_font (14, uid); 68 | } 69 | } else if (len < 42){ 70 | if (ColorManager.font_size != 13) { 71 | ColorManager.change_font (13, uid); 72 | } 73 | } else if (len < 45){ 74 | if (ColorManager.font_size != 12) { 75 | ColorManager.change_font (12, uid); 76 | } 77 | } 78 | }); 79 | key_press_event.connect ((e) => { 80 | if (65307 == e.keyval) { 81 | unfocus (); 82 | manager.stop_notify = false; 83 | } 84 | 85 | return false; 86 | }); 87 | focus_in_event.connect ((e) => { 88 | if (manager.is_timer_set ()) { 89 | var timer = manager.actual_timer; 90 | if (timer.time_left.is_expired ()) { 91 | timer.stop (); 92 | } else { 93 | manager.stop_notify = true; 94 | } 95 | text = timer.timer_start_span.to_string ().strip (); 96 | Timeout.add (1, () => { 97 | select_region (0, -1); 98 | return false; 99 | }); 100 | } 101 | return false; 102 | }); 103 | focus_out_event.connect ((e) => { 104 | manager.stop_notify = false; 105 | return false; 106 | }); 107 | } 108 | 109 | private static double parse_num(string num) { 110 | return double.parse (num.replace (",", ".")); 111 | } 112 | 113 | private void timer_set (string timer_str) { 114 | try { 115 | GLib.MatchInfo mi; 116 | if (minute_only_pattern.match_full (timer_str, -1, 0, 0, out mi)) { 117 | var time = parse_num (mi.fetch_named ("minutes")) * GLib.TimeSpan.MINUTE + 0.5; 118 | manager.new_timer (new Timer.TimeSpan (time)); 119 | return; 120 | } 121 | if (!long_form_pattern.match_full (timer_str, -1, 0, 0, out mi)) { 122 | return; 123 | } 124 | var days = mi.fetch_named ("days"); 125 | var hours = mi.fetch_named ("hours"); 126 | var minutes = mi.fetch_named ("minutes"); 127 | var seconds = mi.fetch_named ("seconds"); 128 | if (days == null && hours == null && minutes == null && seconds == null) { 129 | return; 130 | } 131 | var time = 0.5; // Rounding 132 | if (days != null) { 133 | time += parse_num (days) * GLib.TimeSpan.DAY; 134 | } 135 | if (hours != null) { 136 | time += parse_num (hours) * GLib.TimeSpan.HOUR; 137 | } 138 | if (minutes != null) { 139 | time += parse_num (minutes) * GLib.TimeSpan.MINUTE; 140 | } 141 | if (seconds != null) { 142 | time += parse_num (seconds) * GLib.TimeSpan.SECOND; 143 | } 144 | manager.new_timer (new Timer.TimeSpan (time)); 145 | } catch (GLib.Error e) { 146 | GLib.warning ("Regex parse error: %s", e.message); 147 | } 148 | } 149 | 150 | public bool validate_timer (string timer_str) { 151 | try { 152 | GLib.MatchInfo mi; 153 | if (minute_only_pattern.match_full (timer_str, -1, 0, 0, out mi)) { 154 | return true; 155 | } 156 | if (!long_form_pattern.match_full (timer_str, -1, 0, 0, out mi)) { 157 | return false; 158 | } 159 | return mi.fetch_named ("days") != null || mi.fetch_named ("hours") != null || mi.fetch_named ("minutes") != null || mi.fetch_named ("seconds") != null; 160 | } catch (GLib.Error e) { 161 | GLib.warning ("Regex parse error: %s", e.message); 162 | return false; 163 | } 164 | } 165 | 166 | } 167 | 168 | } 169 | -------------------------------------------------------------------------------- /src/TitleLabel.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2017 Peter Arnold 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 | * Boston, MA 02111-1307, USA. 18 | */ 19 | 20 | namespace Timer { 21 | public class TitleLabel : Gtk.Entry { 22 | public string last_title { get; private set; } 23 | 24 | public signal void unfocus (); 25 | public TitleLabel (string? timer_name) { 26 | Object (text: timer_name != null ? timer_name : TimerApp.STANDARD_TIMER_NAME, 27 | xalign: 0.5f); 28 | last_title = text; 29 | } 30 | 31 | construct { 32 | var title_context = get_style_context (); 33 | title_context.add_class ("label"); 34 | title_context.add_class ("title"); 35 | activate.connect (() => { 36 | if (text.length == 0) { 37 | last_title = TimerApp.STANDARD_TIMER_NAME; 38 | } else { 39 | last_title = text; 40 | } 41 | unfocus (); 42 | }); 43 | key_press_event.connect ((e) => { 44 | if (65307 == e.keyval) { 45 | unfocus (); 46 | } 47 | return false; 48 | }); 49 | focus_in_event.connect ((e) => { 50 | text = ""; 51 | }); 52 | focus_out_event.connect ((e) => { 53 | if (text.length != 0) { 54 | last_title = text; 55 | } 56 | text = last_title; 57 | }); 58 | can_focus = false; 59 | button_press_event.connect ((e) => { 60 | if (e.type == Gdk.EventType.@2BUTTON_PRESS) { 61 | can_focus = true; 62 | focus (Gtk.DirectionType.UP); 63 | return false; 64 | } 65 | }); 66 | } 67 | 68 | } 69 | } -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- 1 | sources = files( 2 | 'Application.vala', 3 | 'ColorChooser.vala', 4 | 'ColorManager.vala', 5 | 'MainWindow.vala', 6 | 'TimerEntry.vala', 7 | 'TitleLabel.vala', 8 | 'Logic/TimeSpan.vala', 9 | 'Logic/TimerManager.vala', 10 | 'Logic/TimerObject.vala' 11 | ) 12 | --------------------------------------------------------------------------------